瀏覽代碼

update

master
myitinos 4 年之前
父節點
當前提交
d16a333427
共有 1 個檔案被更改,包括 6 行新增3 行删除
  1. +6
    -3
      checker.py

+ 6
- 3
checker.py 查看文件

@ -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…
取消
儲存