Browse Source

update

master
myitinos 4 years ago
parent
commit
d16a333427
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      checker.py

+ 6
- 3
checker.py View File

@ -1,8 +1,11 @@
#! /usr/bin/env python2
from pwn import process, remote
# from pwn import context, remote
from pwn import remote, context
from multiprocessing import pool
context.log_level = "error"
HOST = "192.168.2.20"
TOTAL_TEAMS = 1
TOTAL_TEAMS = 10
FORMAT = "SlashRootCTF"
@ -97,4 +100,4 @@ if __name__ == "__main__":
r0 = poc0(HOST, (60004 + (i*100)))
r1 = poc1(HOST, (60004 + (i*100)))
r2 = poc2(HOST, (60004 + (i*100)))
print("Team [{}] {} {} {}" % (i, r0, r1, r2))
print("Team [%s] %s %s %s" % (i, r0, r1, r2))

Loading…
Cancel
Save