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
| """ | |
| Tomcat bruteforce | |
| Author: @itsecurityco | |
| """ | |
| import os | |
| import sys | |
| import getopt | |
| import base64 | |
| import requests |
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 | |
| # Usage: steghidebf.sh stegofile wordlist | |
| stegofile=$1; | |
| dict=$2; | |
| printf "Steghide Bruteforce (c) 2017 by Juan Escobar\n"; | |
| printf "stegofile: %s\n" "$stegofile"; | |
| printf "wordlist: %s\n\n" "$dict"; |
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/python | |
| # @itseco | |
| # https://en.wikipedia.org/wiki/Diffie%E2%80%93Hellman_key_exchange | |
| import sys | |
| alice_private_key = int(sys.argv[1]) # should be large enough to be secure | |
| bob_private_key = int(sys.argv[2]) # should be large enough to be secure | |
| modulus_prime = 17 # should be large enough to be secure (2048 bits minimum) | |
| base_generator = 3 |
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/python | |
| # @itseco | |
| # https://es.wikipedia.org/wiki/RSA | |
| import sys | |
| p1 = 53 | |
| p2 = 59 | |
| n = p1 * p2 | |
| fn = (p1-1) * (p2-1) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| PowerShell -Exec Bypass | |
| Import-Module .\BloodHound.ps1 | |
| Get-BloodHoundData |
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/python | |
| # @itseco | |
| # https://github.com/itseco/ | |
| # Extract download url's for popular Wordpress plugins | |
| # Usage python script.py pages | |
| # python script.py 99 | |
| from lxml import html | |
| import sys | |
| import requests |
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
| ; Author: Juan Escobar | |
| ; /usr/include/i386-linux-gnu/asm/unistd_32.h | |
| ; nasm -f elf -o HelloWorld.o HelloWorld.asm | |
| ; ld -o HelloWorld HelloWorld.asm | |
| global _start | |
| section .text | |
| _start: |
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
| #!/usr/bin/env python | |
| # Author: @itseco | |
| # This script takes a filename as argument | |
| # will write bytes in \x format to the file | |
| import sys | |
| handle = open(sys.argv[1], 'w') | |
| buf = "Paste the shellcode here..." | |
| handle.write(buf) | |
| handle.close() |
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
| #!/usr/bin/env python | |
| # Author: @itseco | |
| # This script takes a filename as argument | |
| # and will produce the opcodes | |
| # to push this string onto the stack | |
| # Original file: pvePushString.pl (www.corelan.be) | |
| import sys | |
| if len(sys.argv) < 2: | |
| print " usage: %s \"String to put on stack\"" % sys.argv[0] |