Skip to content

Random one liner scripts for use in reversing, exploit development etc.

Notifications You must be signed in to change notification settings

keremenci/OneLiners

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 

Repository files navigation

OneLiners

Random one liner scripts for use in reversing, exploit development etc. All take input from stdin and print to stdout

Encode string to bytes in C syntax - python

print('\\x' + '\\x'.join(str(v) for v in [format(ord(a), 'x') for a in input()]))

Simple xor cipher to C syntax - python

print('\\x' + '\\x'.join(str(v) for v in [format(ord(a) ^ ord(<key>), 'x') for a in input()]))

About

Random one liner scripts for use in reversing, exploit development etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published