Friday, January 22, 2016
Sunday, January 10, 2016
Saturday, January 9, 2016
How to Hide Files in JPG Images Let's see this with real stuff for fake money "VOID" security scanning test ... PKzip Coomad Line
if you encrypt a message with OpenPGP and then "ACSII armor" the result, i.e. encode it in Base64, then this encoding enlarges the data by 34%: 3 bytes become 4 characters (plus the odd newline). Compression with DEFLATE will be effective at cancelling this enlargement (thanks to Huffman codes). That's a case of usefulness of compression after encryption -- but, really, that's more compression over Base64, rather than compression over encryption.
http://security.stackexchange.com/questions/19969/encryption-and-compression-of-data
1. https://users.cs.jmu.edu/buchhofp/forensics/formats/pkzip.html
2. http://ricardo.ecn.wfu.edu/~cottrell/pkzip.html
encode
creates archive in the UUEncode format
note: PKZIP will create two files when the encode option is invoked; a .ZIP archive (e.g. save.zip) as well as UUEncoded version of the .ZIP file (e.g. save.uue) are created
Friday, January 8, 2016
I am trying to teach myself to program using the interactivepython.org website. I have run into a problem that seems to be way over my head. I've been working on it for 3 hours straight and am racking my noggin. Not sure how to break this down at all.
Problem:
This is the code I currently have:
| |||
Here is a simpler (but longer) answer as Joran Beasley's.
After you understand, that you can get the 'number' of a character with
ord() and 'recover' the character with chr() it is quiet simple to 'translate' the code you got into correct python code.
Beginning with the following part:
If you start out with the code you already wrote you can translate the above into:
You can do the same with the decryption part and write then a simple menu.
Here is the remaining code (you have to add the encrypt function at the top:
| |||||||||||||||||
|
heres a fun solution
| |||||||||||||||||||||||||||||||||||||||||
|
Subscribe to:
Posts (Atom)
Portugal Ukraine Russia (mercenaires killed)
https://sicnoticias.pt/especiais/guerra-russia-ucrania/2025-04-03-video-russia-diz-ter-abatido-mercenarios-portugueses-na-ucrania-755f2fec

string
datatype with the associated built-in functions andwhile
loop (with 'len
' function) or afor
loop (with 'in
' operator) to traverse the string. Also, use the 'chr
' and 'ord
' functions (which are based on ASCII code). – Brian Cain Nov 14 '13 at 17:43string.make_trans('plaintext', 'ciphertex')
in thestring
library. – Ashish Nitin Patil Nov 14 '13 at 17:44encryptedChar
? it tells you exactly how to get the encrypted char ... – Joran Beasley Nov 14 '13 at 17:52