Example #1
0
from hacksport.problem_templates import CompiledBinary
Problem = CompiledBinary(sources=["vuln.c"], static_flag="")
Example #2
0
from hacksport.problem_templates import CompiledBinary

Problem = CompiledBinary(sources=["mybinary.c"], share_source=True)
Example #3
0
from hacksport.problem_templates import CompiledBinary

Problem = CompiledBinary(sources=["vuln.c"])
Example #4
0
from hacksport.problem_templates import CompiledBinary

Problem = CompiledBinary(sources=["mybinary.c"],
                         share_source=True,
                         static_flag="this_is_the_flag",
                         remote=True)
Example #5
0
from hacksport.problem_templates import CompiledBinary
Problem = CompiledBinary(sources=["vuln.c"], static_flag="Qxy)B@602!!|")
Example #6
0
from hacksport.problem_templates import CompiledBinary
Problem = CompiledBinary(sources=["vuln.c"],
                         static_flag="welcome to cybersecurity")
Example #7
0
from hacksport.problem_templates import CompiledBinary

Problem = CompiledBinary(makefile="Makefile", binary_name="mybinary")
Example #8
0
from hacksport.problem_templates import CompiledBinary

Problem = CompiledBinary(makefile="Makefile",
                         static_flag=r"gigem{counteradvise_orbitoides}",
                         binary_name="acrylic")
Example #9
0
from hacksport.problem_templates import CompiledBinary
Problem = CompiledBinary(sources=["rop1.c"],static_flag="lasactf{ret_1s_c0ol}")
Example #10
0
from hacksport.problem_templates import CompiledBinary

Problem = CompiledBinary(sources=["myproblem.c"], flag_file="key", aslr=True, remote=True)