This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Show Site All UserJS | 显示当前网站所有可用的UserJS脚本 Jaeger | |
| // @namespace https://gist.github.com/jae-jae/39d526079cb2408389129caf98debc29 | |
| // @version 1.1 | |
| // @description 显示当前网站的所有可用UserJS(Tampermonkey)脚本,交流QQ群:104267383 | |
| // @author Jaeger <[email protected]> | |
| // @icon https://greasyfork.org/assets/blacklogo16-b3c5358e47023ea84cbeac99a018eb28.png | |
| // @include * | |
| // @require https://cdn.bootcss.com/babel-core/5.6.15/browser-polyfill.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # On Windows 7, 8, 10 Hosts file is in c:\windows\system32\drivers\etc\hosts | |
| # | |
| # Block Skype ads | |
| 127.0.0.1 secure-sin.adnxs.com # On skype 7.* | |
| 127.0.0.1 *.adnxs.com # On skype 7.* | |
| 127.0.0.1 logi10.xiti.com # On skype 7.* | |
| 127.0.0.1 *.everesttech.net # On skype 7.* | |
| 127.0.0.1 pixel.everesttech.net # On skype 7.* | |
| 127.0.0.1 d.adroll.com # On skype 7.* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * This little snippet is to be copied and pasted in Chrome's DevTools Console. | |
| * It will make a CSV-like list of all the links on a page, formatting their text label nicely if it can. | |
| */ | |
| $('a').map((i, a) => `${a.href},${a.textContent.replace(/\n/g, '').replace(/\s\s+/g, ' ').trim()}`).toArray().join('\n') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Attack created by Mubix. For more information see: | |
| # https://room362.com/post/2016/snagging-creds-from-locked-machines | |
| # Modified for Nethunter by Binkybear | |
| # | |
| # ================== # | |
| # Check for root | |
| # ================== # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| 'use strict'; | |
| var fs = require('fs'); | |
| var https = require('https'); | |
| var cursor = ''; | |
| var pushes = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var decryptedRow=""; | |
| var pm = PasswordManager.getInstance(); | |
| var model = pm.savedPasswordsList_.dataModel; | |
| var pl = pm.savedPasswordsList_; | |
| for(i=0;i<model.length;i++){ | |
| PasswordManager.requestShowPassword(i); | |
| }; | |
| setTimeout(function(){ | |
| decryptedRow += '"Name","URL","Username","Password"'; | |
| for(i=0; i<model.length; i++){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal EnableDelayedExpansion | |
| ver | find "10." > nul | |
| if errorlevel 1 ( | |
| echo Your Windows version is not Windows 10... yet. Brace yourself, Windows 10 is coming^^! | |
| pause | |
| exit | |
| ) |
- https://wizardforcel.gitbooks.io/web-hacking-101/content/ Web Hacking 101 中文版
- https://wizardforcel.gitbooks.io/asani/content/ 浅入浅出Android安全 中文版
- https://wizardforcel.gitbooks.io/lpad/content/ Android 渗透测试学习手册 中文版
- https://wizardforcel.gitbooks.io/kali-linux-web-pentest-cookbook/content/ Kali Linux Web渗透测试秘籍 中文版
- https://github.com/hardenedlinux/linux-exploit-development-tutorial Linux exploit 开发入门
- https://www.gitbook.com/book/t0data/burpsuite/details burpsuite实战指南
- http://www.kanxue.com/?article-read-1108.htm=&winzoom=1 渗透测试Node.js应用
- https://github.com/qazbnm456/awesome-web-security Web安全资料和资源列表