Initialisation
This commit is contained in:
30
rootme/challenges/programmation/irc - chaine encodee/hack.py
Normal file
30
rootme/challenges/programmation/irc - chaine encodee/hack.py
Normal file
@ -0,0 +1,30 @@
|
||||
import time
|
||||
import base64
|
||||
from aztrom.irc.clientv1 import IRCClient
|
||||
|
||||
client = IRCClient("irc.root-me.org", 6667)
|
||||
time.sleep(2)
|
||||
print(client.recv())
|
||||
|
||||
client.auth("aztrom")
|
||||
time.sleep(2)
|
||||
print(client.recv())
|
||||
|
||||
client.join("#root-me_challenge")
|
||||
time.sleep(1)
|
||||
print(client.recv())
|
||||
|
||||
client.send("candy", "!ep2")
|
||||
time.sleep(1)
|
||||
resp = client.recv()
|
||||
print(resp)
|
||||
for line in resp.split("\n"):
|
||||
if line.startswith(":Candy!Candy@root-me.org PRIVMSG aztrom :"):
|
||||
code = line.split("aztrom :")[1]
|
||||
print("Code = " + code)
|
||||
decoded = base64.b64decode(code).decode("UTF-8")
|
||||
print("Decoded = " + decoded)
|
||||
client.send("candy", "!ep2 -rep " + decoded)
|
||||
time.sleep(1)
|
||||
print(client.recv())
|
||||
break
|
7
rootme/challenges/programmation/irc - chaine encodee/hack.sh
Executable file
7
rootme/challenges/programmation/irc - chaine encodee/hack.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
BASEDIR=$(dirname "$0")
|
||||
|
||||
export PYTHONPATH="$BASEDIR/../../../../lib/python"
|
||||
|
||||
python3 "$BASEDIR/hack.py"
|
Reference in New Issue
Block a user