fix: update flag
This commit is contained in:
@@ -7,7 +7,7 @@ import re
|
||||
|
||||
context.log_level = 'debug'
|
||||
|
||||
conn = remote("localhost",10001)
|
||||
conn = remote("172.20.14.117",9512)
|
||||
strings = conn.recvline().decode('utf-8')
|
||||
alpha_bet = string.ascii_lowercase + string.digits
|
||||
strlist = itertools.permutations(alpha_bet, 5)
|
||||
|
9
crypto/hard_pow/crackdockerfile
Normal file
9
crypto/hard_pow/crackdockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM python:3.9
|
||||
|
||||
COPY requirements.txt /app/
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install -r requirements.txt -i https://mirrors.ustc.edu.cn/pypi/web/simple
|
||||
|
||||
EXPOSE 10001
|
9
crypto/hard_pow/dockerfile
Normal file
9
crypto/hard_pow/dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM python:3.11
|
||||
|
||||
COPY hard_pow.py /app/
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
EXPOSE 10001
|
||||
|
||||
CMD [ "python", "hard_pow.py" ]
|
2
crypto/hard_pow/requirements.txt
Normal file
2
crypto/hard_pow/requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
hashpumpy
|
||||
pwntools
|
Reference in New Issue
Block a user