Skip to content

Commit 0436485

Browse files
WillowSauceRWillowSauceR
authored andcommitted
remove debug output
1 parent 2f5a8ba commit 0436485

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
socks5.txt

motd.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ def recvPacket(sk_send):
1818
infos = []
1919
data1 = data.split(b"MCPE")
2020
infos_byte = data1[1].split(b";")
21+
# print(data)
22+
# print(data1)
23+
# print(infos_byte)
2124
for info in infos_byte:
2225
try:
2326
context = info.decode()

send.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,10 @@ def createSocket():
7979

8080
def sendPacket(target, port, file, loops, interval):
8181
for i in range(loops):
82-
localPort, socketSend = createSocket()
82+
try:
83+
localPort, socketSend = createSocket()
84+
except:
85+
continue
8386
payloads = None
8487
try:
8588
payloads = marshal.load(open(file, "rb"))

0 commit comments

Comments
 (0)