mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-02 14:56:10 -04:00
some small fixes
This commit is contained in:
parent
c351a52951
commit
57ce24af8c
92 changed files with 9799 additions and 26509 deletions
17
useful/binary_dot_symbols.py
Normal file
17
useful/binary_dot_symbols.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
'''
|
||||
.. . .. . . .. ... ... . . ..... .. . .. .. ... .
|
||||
....... ....... ....... ....... ....... ....... ....... .......
|
||||
|
||||
.. . .. . . .. . . ..... .. .... .. .. . ..... .. ...
|
||||
....... ....... ....... ....... ....... ....... ....... .......
|
||||
|
||||
.. .... . ..... .. ... .. . .. .... ... .. ... . ... ..
|
||||
....... ....... ....... ....... ....... ....... ....... .......
|
||||
'''
|
||||
|
||||
|
||||
s="""1100001 1101001 1101110 1110100 1011111 1100001 1100110 1110010 1100001 1101001 1100100 1011111 1101111 1100110 1011111 1101110 1101111 1011111 1100111 1101000 1101111 1110011 1110100 1110011"""
|
||||
|
||||
a = ''.join(chr(int(i, 2)) for i in s.replace("\n"," ").split(' '))
|
||||
|
||||
print a
|
Loading…
Add table
Add a link
Reference in a new issue