Coder Social home page Coder Social logo

bit4woo / knife Goto Github PK

View Code? Open in Web Editor NEW
1.5K 30.0 197.0 14.35 MB

A burp extension that add some useful function to Context Menu 添加一些右键菜单让burp用起来更顺畅

Home Page: https://www.bilibili.com/video/bv1BC4y1s7nS

License: MIT License

Java 99.95% Batchfile 0.05%
burp-extensions burpsuite-extender update-cookie cookie knife burp-plugin menu unicode-to-chinese u2c hackbar

knife's Introduction

Open Source Love MIT Licence

knife

English

项目地址:https://github.com/bit4woo/knife

项目简介:knife是一个Burp Suite插件,主要目的是对Burp做一些小的改进,让使用更方便。就像用一把小刀对Burp进行小小的雕刻,故名“knife”。

项目作者:bit4woo 欢迎与我交流

视频教程:https://www.bilibili.com/video/bv1BC4y1s7nS

注意事项

使用插件前,请先修改配置为自己的Payload!!!尤其是类型以“Action”开头的配置!!!

安装新版本插件后,请参考”配置合并(Merge Config)“部分进行配置更新!!!

安装方法

1、访问https://github.com/bit4woo/knife/releases

2、下载最新jar包

3、如下方法安装插件

image-20211230190034976

使用最新版

如果你想使用最新的功能,可以使用如下方法:

1、自行打包

git clone https://github.com/bit4woo/knife
cd knife
mvn package

2、通过github action下载

访问项目的Action页面 https://github.com/bit4woo/knife/actions。找到最新成功的构建,绿色✔的成功的构建,红色×是失败的构建。

image-20231220194707237

点击最新成功的构建链接,找到底部的 “jar-with-dependencies”,即可下载对应的jar包。

image-20231220194724635

功能介绍

一、右键菜单

image-20211230171913891

1、Add Host To Scope

将当前选中的请求的所有host都加入到scope当中,burp默认是将当前请求的URL加入到scope中。

使用场景:【比如主动扫描】当使用burp对一个URL进行主动扫描时,如果这个URL不在scope中需要点击确认。如果在测试一个目标网站站时,提前使用该功能,能避免多次重复点击确认按钮。

confirm

2、Update Cookie

一键更新当前数据包的cookie,主要用于repeater。

使用场景:【比如漏洞复验】当我们复验一个很早以前的漏洞,往往需要更新其中的cookie值使得数据包生效。这种情况下只要burp的history中有对应请求的最新的cookie,在repeater中即可完成一键更新。

实现原理:从burp history中,倒叙查找与当前数据包host相同的数据包,如果找到并且有cookie,将使用该cookie替换当前数据包的cookie。如果测试时同一个系统的不同账户的请求流量都经过当前burp则需要注意,当然,如果你对此了然于胸也可帮助你测试越权漏洞。

updatecookie

3、Update Header

与”update cookie“功能类似,它的作用也是用于更新用户标识,因为有些网站的用户标识并不是存在cookie中,而是以某个header存在。

用户可以自己根据遇到的请求,在图形配置界面配置tokenHeaders的值来自定义带用户标识的header。已预先设置了几个可能的header头名称token,Authorization,Auth,jwt。

对应的配置项:

tokenHeader

updateheader

4、Set Cookie

对当前请求的响应包,添加”set cookie“这个header,使整个网站的后续请求都带上这些cookie。

使用场景:当我们使用IP地址访问一个web的时候,由于cookie的作用域的限制,大多都不会带上有效cookie。但是我们知道它是某个域的站点(比如它是*.jd.com的某个网站),可以通过Set Cookie方法主动给他设置与某个站点相同的cookie(比如www.jd.com的cookie)。

方法一:可以直接输出cookie值

image-20230419132437806

image-20230419132506911

方法二:输入域名,根据域名查找历史记录中的cookie值

image-20230419132744865

image-20230419132856797

5、Open With Bsrowser

使用浏览器打开当前选中的URL或者当前请求的URL。

优先判断当前选中内容是否是有效的URL,如果是则打开选中的URL,如果否则打开当前请求的URL。

用户可以配置打开URL所使用的浏览器,如果值为空或者配置的浏览器路径有错,则会使用系统默认浏览器打开。

对应的配置项:

browser

浏览器打开演示:

openwithbrowser

6、Insert Payload

可以在配置中设置个人的常用payload。

Config_Custom_Payload:字符串格式的payload,payload的值中可以包含2个变量:分别是%host和%DNSlogServer,会在使用payload时使用对应的值替换。

Config_Custom_Payload_Base64:base64格式的payload,当payload包含换行等特殊字符,或者是二进制文件等格式,可以先将内容转换成base64格式然后设置。比如ImageMagic漏洞的Payload。

insertpayload

对应的配置项

image-20211230170314436

7、Insert Payload For All

原先的菜单名称是【Insert XSS】,现在对其做了加强。原先是只能批量插入XSS Payload到多个参数值,现在是任意Payload都可以。

一键对当前数据包中【非数字型和非cookie的所有参数】插入自定义的Payload。与Insert Payload的功能类似,只是这个功能尝试对多个参数执行相同的动作而已。

8、Dismiss

让一些无用的、不想看到的请求包从眼前消失!

Action_Drop_Request_If_Host_Matches 如果后续再次遇到当前Host的任何URL,自动丢弃(drop),不发送请求。

Action_Drop_Request_If_URL_Matches 如果后续再次遇到当前的URL,自动丢弃(drop),不发送请求。

Action_Drop_Request_If_Keyword_Matches 如果后续的URL中包含制定的关键词,自动丢弃(drop),不发送请求。

Action_Forward_Request_If_Host_Matches 如果后续再次遇到当前Host的任何URL,自动放过(Forward),不做拦截。

Action_Forward_Request_If_URL_Matches 如果后续再次遇到当前的URL,自动放过(Forward),不做拦截。

Action_Forward_Request_If_Keyword_Matches 如果后续的URL中包含制定的关键词,自动放过(Forward),不做拦截。

自动Drop掉的URL,可以配合History上方的过滤器”Hide items without responses“,让其不显示在History中。

image-20230419123228184

对应的配置项:

18	*.firefox.com		Action_Drop_Request_If_Host_Matches	true	
19	*.mozilla.com		Action_Drop_Request_If_Host_Matches	true	
20	*.mozilla.org		Action_Drop_Request_If_Host_Matches	true	
21	*.mozilla.net		Action_Drop_Request_If_Host_Matches	true	

image-20230419123702800

9、Run SQLMap(2.3版本已融合到Run Cmd中)

一键对当前数据包跑sqlmap,修改SQLMap-Command配置的值可以根据自己的习惯进行修改。

python /usr/local/bin/sqlmap-dev/sqlmap.py -r {request.txt} --force-ssl --risk=3 --level=3


其中的{request.txt} 会在执行时被当前数据包的文件所替换

image-20211230172943685

另外调用SQLMap、Nmap等burp外部程序,本质都是执行系统命令。而RunTerminalWithRobotInput选项会影响命令执行的方式。

当RunTerminalWithRobotInput 为 true的时候,会尝试先开启一个命令行终端,然后以模拟键盘输入的方式进行命令的执行。优点是:效果类似人为交互,会在命令行终端留下历史记录。缺点是:这个方式受程序响应速度、剪切板读写是否成功的影响,不是很稳定,某些情况会出现混乱错误。

当RunTerminalWithRobotInput 为 false的时候,会将所有命令先写入bat文件,然后运行bat文件,来实现系统命令的执行。优缺点刚好相反:功能稳定,大事不会留下命令行历史记录。

可根据自己的需求修改对应的配置。

RunTerminalWithRobotInput		Config_Basic_Variable	false	

runsqlmap

10、Run Nmap(2.3版本已融合到Run Cmd中)

和”Run SQLMap“类似,调用Nmap,对当前选择请求的Host进行扫描。

对应的配置项:

image-20211230172843489

11、Run Cmd(2.3版本引入)

根据用户的建议,开发了添加自定义命令的功能,配置类型为“Run_External_Cmd”,该功还不完善,如果你有想法,欢迎反馈给我。

image-20240506105704093

image-20240506105825874

在命令中,支持的字段列表如下:

BaseURL ---比如https://www.example.com
FullURL ---比如https://www.example.com/user?id=1&isactive=true
Host ---比如www.example.com
HostPort ---比如www.example.com:443
Request
RequestAsFile ---比如 将整个请求存入文件,并将文件名拼接到命令中,sqlmap命令中就有用到
RequestBody
RequestHeaders
Response
ResponseAsFile
ResponseBody
ResponseHeaders

如下是以上字段的多选版本,当前用户选中多个HTTP数据包时,都将被提取并处理,否则只会处理第一个。
MultiBaseURL
MultiFullURL
MultiHost
MultiHostPort
MultiRequest
MultiRequestAsFile
MultiRequestBody
MultiRequestHeaders
MultiResponse
MultiResponseAsFile
MultiResponseBody
MultiResponseHeaders

二、数据包显示Tab

1、Chinese Tab

A:将Unicode形式的字符转换为中文,比如 \u4e2d\u6587-->中文 显示效果和burp的显示设置中编码的设置有关,如果显示异常可以尝试修改编码设置。

B:当数据包中包含中文,如果默认显示为乱码,可以使用这个Tab,支持使用不同的编码来显示内容。

C: 根据用户的建议,引入了语法高亮、自动换行功能,方便阅读。

image-20211230174237094

image-20240506112829034

Unicode测试URL

https://passport.baidu.com/v2/api/getqrcode

https://aiqicha.baidu.com/index/getCPlaceAjax

三、由ToolFlag和Scope控制范围的请求包自动修改

数据包处理规则的作用顺序:

越新的规则越先被使用,因为它更能代表使用者的最新诉求和意图!

控制条件的基本逻辑是 “对来自于(【是/否】proxy 或者【是/否】 scanner或者【是/否】repeater或者【是/否】intruder)中并且也包含在【是/否】scope中的请求进行修改操作“。

image-20230419131537362

比如,上图所示的逻辑是:对来自proxy并且在scope的中请求,执行数据包更改。

1、自动删除

请求中的一些header头,比如 Last-Modified,If-Modified-Since,If-None-Match. 等等,它们都是控制客户端缓存的,很多时候它们的存在会让重复的请求不会返回真实内容。所以我们可以配置自动删除,如下图。

当然也可以添加新的配置项来删除其他header,key是想要删除的header名称,值留为空即可,type选择为”Action_Remove_From_Headers“。

注意,自动删除的逻辑是对所有请求生效的。

image-20211230174714541

2、自动新增或者修改

当type是”Action_Add_Or_Replace_Header“时:如果原始header存在,用配置中的value值替换原始值。如果不存在,直接以配置中的key和value添加一个header。

当type是”Action_Append_To_Header_value“时:确信原始值存在,在原始值末尾附上value中的内容。

image-20211230175652287

效果演示:

image-20211230181047699

四、由Base URL控制范围的请求包自动修改

执行的修改操和以上相同,不同的是控制范围的方式。当使用set cookie功能后,会自动添加响应的规则,当然也可以手动添加。

image-20230419132007829

上图对应的修改效果。

image-20230419132223617

5、自动使用chunked encode

image-20211230182116718

配置操作

1、配置编辑

Add 新增一个配置项;Delete删除一个配置项;

新增后选择对应的Type,选择是否enable该项配置,也可以添加comment标注配置的作用。

image-20211230184642530

2、配置导出(Export Config)

将当前配置保存到JSON文件。当自己完成满意的配置后,建议及时进行保存备份。

image-20211230182952933

3、配置导入(Import Config)

导入配置会将当前配置完全清空,完全使用新文件中的配置。

image-20211230183059381

4、配置合并(Merge Config)

当更新插件时(使用新的版本),建议按照如下流程操作:

1、保存旧版本的配置

2、安装新的插件版本

3、点击”Restore Defaults“,将当前配置初始化为默认值。

4、点击”Merge Conig“,选择旧的配置文件进行配置合并。

5、处理冲突值,选择原始项或冲突项进行删除即可,会自动更新。如果没有冲突项,可以不用处理。

image-20211230183641250

5、配置缓存 SaveToBurp

将当前配置保存到burp的缓存中,下次启动burp时会自动加载。默认是会自动保存的。

欢迎贡献

如果你更好的建议或者意见,欢迎提交

鸣谢

感谢 jetbrains 的开源License!

jetbrains

knife's People

Contributors

bit4woo avatar dependabot[bot] avatar thomasperkins1123 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

knife's Issues

knife 0.9的bug

burp 2.0.11使用knife0.9的时候proxy interup on开启拦截请求包的时候会卡死,0.8不会,可能是内存泄露了吧,希望作者周知。

配置

想问一下为啥2.1的burp装这个插件后菜单选项没变化,右键没有那些选项,burp2.1,Java1.8

[Feature Request] U2C with color highlight

默认的 "Pretty" tab 支持 json 高亮、切换软换行、切换显示 \n。knife 自定义的 U2C Tab, Chinese Tab 内容可以改善成前者一样的显示效果吗?

burp-api-common下载失败导致mvn打包失败

mvn package报错

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 20.849 s
[INFO] Finished at: 2023-01-03T15:55:10+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project knife: Could not resolve dependencies for project com.bit4woo.burp:knife:jar:2.1: Could not find artifact com.github.bit4woo:burp-api-common:jar:0.1.4 in nexus-aliyun (http://maven.aliyun.com/nexus/content/groups/public) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

同学,您这个项目引入了14个开源组件,存在1个漏洞,辛苦升级一下

检测到 bit4woo/knife 一共引入了14个开源组件,存在1个漏洞

漏洞标题:BeanShell 任意命令执行漏洞
缺陷组件:org.beanshell:[email protected]
漏洞编号:CVE-2016-2510
漏洞描述:BeanShell(bsh)是一个开源的、免费的Java源代码解释器。
BeanShell(bsh)2.0b6之前版本中存在安全漏洞。当使用Java序列化或Xstream的应用程序将BeanShell包含在类路径中时,远程攻击者可借助特制的序列化数据利用该漏洞执行任意代码。
国家漏洞库信息:https://www.cnvd.org.cn/flaw/show/CNVD-2016-01482
影响范围:[0, ∞)
最小修复版本:
缺陷组件引入路径:com.bit4woo.burp:[email protected]>org.beanshell:[email protected]

另外还有几个漏洞,详细报告:https://mofeisec.com/jr?p=i4532b

一个add host to scope的小bug

通过插件添加的第一个host不会触发burp target的 logging out-of-scope proxy traffic id disabled,每次都得手工在scope里添加一个才能触发,然后再用插件添加就可以
image

2.1存在unicode解码不稳定问题 (已修复)

unicode解码错误

如图所示,首先切换到pretty界面,再修改为UTF-8编码时,此时,成功解码。

但是,再次切换为pretty界面后,就再次乱码了(此时编码还是UTF-8编码)。

响应编码报文demo :(无效用户)

HTTP/1.1 200 OK
Server: nginx
Date: Tue, 07 Feb 2023 09:08:03 GMT
Content-Type: application/json
Connection: close
Access-Control-Allow-Origin: *
Content-Length: 47

{"error":1036,"msg":"\u65e0\u6548\u7528\u6237"}

在Burp设置GBK编码时,用起来还是比较正常。

Run sqlmap的问题

kali linux 无法使用这个选项
是不是配置问题 还是只支持windows环境
image

U2C

使用 U2C 进行 unicode 编码后就无法换行了,后面太长看着不方便
image

导入报错请教

大佬,我在extender模块导入压缩包里面src目录里面的插件 然后显示:
java.lang.ClassNotFoundException: burp.BurpExtender
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at burp.y3e.a(Unknown Source)
at burp.y3e.(Unknown Source)
at burp.fme.a(Unknown Source)
at burp.q0h.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

烦请大佬赐教, 百度已经查过解决办法,没有解决问题,所以还是问大佬吧

send to sqlmap, mac支持问题

配置的差不多,但是点击 run sqlmap之后 只是复制了sqlmap命令,而没有调用terminal去执行,需要自己打开terminal粘贴之后执行,是不是我的姿势不对~~

另: sqlmap-request-files 参数配置不生效~~ mac下

Linux下启动nmap、sqlmap命令问题

系统:Arch Linux
内核:6.1.12-arch1-1
桌面:KDE Plasma 5.27.0
终端:konsole
测试工具:Burp Suite Professional v2023.1.2


情况1

使用如下配置时

Key Value Type Enable
SQLMap-Command /usr/bin/konsole --hold -e /bin/sh -c "python sqlmap.py -r {request.txt} --force-ssl --risk=3 --level=3" Config_Basic_Variable true
Nmap-Command /usr/bin/konsole --hold -e /bin/sh -c "nmap -Pn -sT -sV --min-rtt-timeout 1ms --max-rtt-timeout 1000ms --max-retries 0 --max-scan-delay 0 --min-rate 3000 {host}" Config_Basic_Variable true
RunTerminalWithRobotInput Config_Basic_Variable false

右键运行启动nmap、sqlmap命令时可弹出konsole终端,但需要关闭终端后BurpSuite才能进行操作


情况2

使用如下配置时

Key Value Type Enable
SQLMap-Command /usr/bin/konsole --hold -e /bin/sh -c "python sqlmap.py -r {request.txt} --force-ssl --risk=3 --level=3" Config_Basic_Variable true
Nmap-Command /usr/bin/konsole --hold -e /bin/sh -c "nmap -Pn -sT -sV --min-rtt-timeout 1ms --max-rtt-timeout 1000ms --max-retries 0 --max-scan-delay 0 --min-rate 3000 {host}" Config_Basic_Variable true
RunTerminalWithRobotInput Config_Basic_Variable true

Key Value Type Enable
SQLMap-Command python sqlmap.py -r {request.txt} --force-ssl --risk=3 --level=3 Config_Basic_Variable true
Nmap-Command nmap -Pn -sT -sV --min-rtt-timeout 1ms --max-rtt-timeout 1000ms --max-retries 0 --max-scan-delay 0 --min-rate 3000 {host} Config_Basic_Variable true
RunTerminalWithRobotInput Config_Basic_Variable true

右键运行启动nmap、sqlmap命令时无终端打开,未见sqlmap、nmap运行


情况3

使用如下配置时

Key Value Type Enable
SQLMap-Command python sqlmap.py -r {request.txt} --force-ssl --risk=3 --level=3 Config_Basic_Variable true
Nmap-Command nmap -Pn -sT -sV --min-rtt-timeout 1ms --max-rtt-timeout 1000ms --max-retries 0 --max-scan-delay 0 --min-rate 3000 {host} Config_Basic_Variable true
RunTerminalWithRobotInput Config_Basic_Variable false

右键运行启动nmap、sqlmap命令时无终端打开,未见sqlmap、nmap运行,并且会失去响应

加载报错

2021-06-16_23-17

openjdk 15.0.3 2021-04-20
OpenJDK Runtime Environment (build 15.0.3+3)
OpenJDK 64-Bit Server VM (build 15.0.3+3, mixed mode)

OS:Archlinux x86

本地编译打包报错

bit4woo/knife/pom.xml
73行出现报错

Snipaste_2022-08-31_15-17-47

[WARNING] The POM for com.github.bit4woo:burp-api-common:jar:0.1.3 is missing, no dependency information available

Extension adding entries with status -1 in logger++

Hi,
When using logger++ burp plugin and using your entension every request are sent 2 times and one of them respond with status -1
I tried to remove all options of knife to get only the right click utilities but it doesn't change anything.

Here is a screenshot of the issue :
image

I use burp v2.1.03 and knife 1.5

Extension blocked by Cloudflare

Hi !
Thank you for the extension I really like it.
But when I use your extension the CloudFlare WAF block me due to my browser signature.
Do you know a way to avoid that ?
Thank you

Where's the "Getter"?

感谢作者的分享,但是我没能在源码中找到Getter这个类。
烦请作者提供一下Getter类,谢谢!

sqlmap,nmap 的调用问题

如果我的Windows没有本地安装或者部署SQLMAP以及NMAP,但是在安装了WSL(如kali),可以通过kali run sqlmap 或者kali run nmap 的命令来直接运行sqlmap和nmap,不知道配置怎么设置,让他通过指定命令运行,而不是去运行设置路径中的文件。

编译报错

Failed to execute goal on project knife: Could not resolve dependencies for project com.bit4woo.burp:knife:jar:2.0: Could not find artifact com.github.bit4woo:burp-api-common:jar:0.1.3 in central

image

2.1存在unicode识别失败

2.1 识别返回包 异常
{
"code": 400,
"message": "???????"
}

2.0 U2C识别返回包 正常

{
"code": 400,
"message": "输入参数错误"
}
提供一个2.1正常使用的方法,希望对作者修复该问题有所帮助
1、先设置2.1的change encoding编码为GBK
2、然后切换一次2.0的U2C
3、最后再切回2.1,就能正常识别出中文
重新发包仍然无法识别,但通过这个方法却能使其正常

由于不懂java,无法找到问题,只能提交bug了

导入报告找不到com/alibaba/fastjson/JSONObject类

项目引用了alibaba的fastjson类,但是通过eclipse导出的时候,不会又这个类包含在jar文件中。如何解决。

java.lang.NoClassDefFoundError: com/alibaba/fastjson/JSONObject at config.ConfigEntry.ToJson(ConfigEntry.java:67) at config.ConfigTableModel.getConfigJsons(ConfigTableModel.java:51) at config.GUI.getAllConfig(GUI.java:354) at burp.BurpExtender.initConfig(BurpExtender.java:148) at burp.BurpExtender.registerExtenderCallbacks(BurpExtender.java:63) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at burp.u2e.run(Unknown Source) at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.ClassNotFoundException: com.alibaba.fastjson.JSONObject at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 11 more

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.