Zelaron Gaming Forum  
Stats Arcade Portal Forum FAQ Community Calendar Today's Posts Search
Go Back   Zelaron Gaming Forum > The Zelaron Nexus > The Lounge

 
 
Thread Tools Display Modes

 
Encrypted Thread, Part 2
Reply
Posted 2007-04-25, 01:04 PM
Be017c7bd93f10ea100fbeb0ded64186dd9ecbedbcdbcc4206 e41e12
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-25, 01:14 PM in reply to !King_Amazon!'s post "Encrypted Thread, Part 2"
Here's the code I came up with for the cipher, I challenge anyone to break our messages.

Code:
static unsigned char etab[256];
static unsigned char tp;

unsigned char genrand();

void setkey(unsigned char *key, int length, unsigned char *iv)
{
    int i;
    for(i = 0; i < 256; i++) {
        etab[i] = i + key[i % length] + length ^ iv[i];
    }
    tp = 0;
    for(i = 0; i < 256; i++) {
       genrand();
    }
}

#define R_ROT(n, r) (((n) >> (r)) | ((n) << (8-(r))))
#define F(x) ((((x) * (x)) << 1) | 1)
unsigned char genrand()
{
    unsigned char r0, r1, k0, k1, k2;

    k0 = etab[tp] + 0x6a;
    k1 = etab[(tp + 1) & 0xff] + 0xf1;
    k2 = etab[(tp + 2) & 0xff] + 0x29;

    r0 = etab[(tp + 3) & 0xff];
    r1 = etab[(tp + 4) & 0xff];

    r0 = R_ROT(r0 ^ r1, F(k1 + r1)) + k0;
    r1 = R_ROT(r1 ^ r0, F(k0 + r0)) + k1 + k0;
    r0 = R_ROT(r0 ^ r1, F(k1 + r1)) + k2;

    tp += 2;

    etab[tp] ^= r1;
    etab[(tp + 1) & 0xff] ^= r0;

    return r0 + r1;
}
#undef R_ROT
#undef F
The code calls setkey with a zero'd iv and with our password. genrand() is then used to XOR our original message. The message is then converted to hex for the forum to use properly.

980B7671D52358F8590CA7E29BCD41878E9CDEE9AC908D440B AD045D554B2DECEA67415728333CC101BC59EB439F81466FFB 2DA35E84812EB4DED9207BCCABD6B65EA5C4C92F95A2F49915 751D847AE9A198AF1D581D3673DF16AB961C80715EFBD17CAE 6A219B96031647EDF47879
Old
Profile PM WWW Search
Mantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to be
 
 
Mantralord
 



 
Reply
Posted 2007-04-25, 01:17 PM in reply to Mantralord's post starting "Here's the code I came up with for the..."
A5422c895c93d4f8730e8b6a1e7e26301d29c33d3c96304e39 ff0a02685a4bf9c62db139a1d1892b091917fa4e2575140d32 208c5a8fefabab594a98349d3715ac598e4d3e0cd61f6dd292 380ee6b31a5b935c847e8e019988e9d056914f77868efc35ca 80ac917dd80f9bee51b8c69d72f73500a41651181128c7dd3e 489bdf8b78a7f5ae3a73f7a5f796cfc99cfdd73b9ba85213cb 3775339e4e560ce73a40800ca3eb436b5f2978482ec4953d6a cd5759
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-25, 01:19 PM in reply to !King_Amazon!'s post starting "A5422c895c93d4f8730e8b6a1e7e26301d29c33d..."
6060516133d5ded2c9969615607326c82bb2f8143c849a1e77 6f3e0c57b9ddeba6654825b0533fd65bd3037b5eb849a790d5 e8c5611c5d544c94d50c6c42e58ee5e61af355c1c4eb40aefa 9a407c752cb2e0efe98d77c0cdb5dc34714291f3364d85daf4 6fde6edb2e6fe076e5ee83468893567c7b02c00dd30b
Old
Profile PM WWW Search
Mantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to be
 
 
Mantralord
 



 
Reply
Posted 2007-04-25, 01:22 PM in reply to Mantralord's post starting "6060516133d5ded2c9969615607326c82bb2f814..."
050424f35ca956e53c392e1f72b5849462d4a4d081b0fbee15 dbb4ac8ee223532801ba05565fbe46022fbaef0f1282476e05 21623ff0e78a2eace97e6ac5c04aa22367e91ca2a033c25dee 92baf3f7295374f74f596f1bc3f506bde1a854f9bc6d86dbe3
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-25, 01:27 PM in reply to !King_Amazon!'s post starting "050424f35ca956e53c392e1f72b5849462d4a4d0..."
Edcf15627909648e8d0ef84a1d2de61a51d510349960b9817c 5bc890215e331417cae6f5d6b4297cf16e00849e6454fd3bca 2576b35aab7d4999613f72b1e4a20cb043a0162eb4022441d6 09a4671e33bfa8812fc921db6ebb0fb80ec0532843ea28e356 3c0cb3fa75d42942c66e305e38b00bd6ac75826d2ffdee56cd e852a17d5990c3b921dbb7af5225745c1a8137405e74
Old
Profile PM WWW Search
Mantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to be
 
 
Mantralord
 



 
Reply
Posted 2007-04-25, 02:21 PM in reply to Mantralord's post starting "Edcf15627909648e8d0ef84a1d2de61a51d51034..."
Be4a58c9cc80073c065dac37b0b003bc6e5765c2585e0caba6 0e2da6cda339f2ba582a812d864e8d8f5b2ab4e5d42ccb7a7b 72e83458590674ed0540d37d611564f9e2d3b3d000df4604c2 347138d7a95e2ced700f9d98e00a0d0618e2948ff0e95b41cb 001e5aae80220c6702e48d03d848f149c999670cf81b271579 2e8abf147637086769a00c26fa16fb87f074da188ba666341e ec951f11548efdd8c44f8bc4470be1eb82c1da6041d391aa71 58adf2b5b2189f4e2849f18fde4f41eea37a93191650
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-25, 02:25 PM in reply to !King_Amazon!'s post starting "Be4a58c9cc80073c065dac37b0b003bc6e5765c2..."
644db4da859c8666fe2f55d25019e19ee4d0fd194d8076e4da 7f79c4d07c6b742e19293523e71c5414b2acb3fac44e560238 536d8bd6ce067427eced3a2411b2cdf802d81a81eacd96106c 5f9a9a66e486b8fd62d3f5b58e61a0cea19f49aff4adec8b63 f359657eb8d8218e7f2e18df79a8fb163c5fa07255c5f85dac 6f046920ebf85d6e182893a19615759a1c80842ab6e6a126d5 a4e10a4c4bbc90d4255848cea0cf8bef684c41648cf20428f8 36083e34c34869c5a7cb99fc2002de0c4e82
Old
Profile PM WWW Search
Mantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to be
 
 
Mantralord
 



 
Reply
Posted 2007-04-25, 02:27 PM in reply to Mantralord's post starting "644db4da859c8666fe2f55d25019e19ee4d0fd19..."
C4cf6c6c7a8306ef1583eefb46e33e0daa1bb003e50bfaaa97 a2c90a0829201158abd3ea729a5611a29b19bcefcdb61bd841 4a2d35ee711a52c3acaac81dfc4a406e347e922d8ece8a7a60 ee699a22dd5662b69cd1ba47153dca8686ae19f019756b25ec 6a7fc65b6d3106559e6029a1d3b153529f1ae3c907b7733d6f 964abfbce4de46c5c59f1c67d457b47f63810818ab28c78d51 dc104f7ae8c23ae02aed72e1314c24b02f72b6d5192308de06 25483127b4ecae29f3969830ddca49dc04f2c2d9691ad3cfc1 40c83aad5f180ec141f3df37fe3b4d238e2f74ff206a6f7914 f408f779b18f5b48892616b229cf90c47fbc80c3a2f06b9066 b6b07a49766d4a4e8a9e736af1b1
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-25, 02:32 PM in reply to !King_Amazon!'s post starting "C4cf6c6c7a8306ef1583eefb46e33e0daa1bb003..."
0c36356dd6347f1bf3964ade5c260df6d348cf166c47506b25 3d2376eaf5bbafc4657976bc91cf2f8c098a3123b39c2a0a7f 7cf2d1caeb78906c7308d4ad677382ab30f7095ed73594404d 122d4fb1ba7043
Old
Profile PM WWW Search
Mantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to be
 
 
Mantralord
 



 
Reply
Posted 2007-04-25, 02:35 PM in reply to Mantralord's post starting "0c36356dd6347f1bf3964ade5c260df6d348cf16..."
07048219aceb49e3027eb75c550a65f387fc15cd794c65cf25 583ea22c85704cc48bba4c7434d21ac4d8cd5cee1356fec405 921055abe355a85feac664ee066de3df46f51ae9aa85a19c1d 1fb574198698b2064f3431812b6c7c6a0634243a6695f1e5ef bb68e87c78a4f54e4e8c6f371d23f9
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-26, 02:19 PM in reply to Mantralord's post starting "Here's the code I came up with for the..."
Two things:
1. HAHA your not an admin any more!!

2. Where do you type the text in the code?
<script type="text/javascript">alert("remember when scripting attacks worked?");</script>
Old
Profile PM WWW Search
Asamin has an imagination enthroned in its own recess, incomprehensible as from darknessAsamin has an imagination enthroned in its own recess, incomprehensible as from darknessAsamin has an imagination enthroned in its own recess, incomprehensible as from darkness
 
 
Asamin
 



 
Reply
Posted 2007-04-26, 02:43 PM in reply to Mantralord's post starting "Here's the code I came up with for the..."
Nobody cares.
Old
Profile PM WWW Search
Thanatos simplifies with no grasp of the basicsThanatos simplifies with no grasp of the basicsThanatos simplifies with no grasp of the basicsThanatos simplifies with no grasp of the basicsThanatos simplifies with no grasp of the basicsThanatos simplifies with no grasp of the basics
 
 
Thanatos
 



 
Reply
Posted 2007-04-26, 05:04 PM in reply to !King_Amazon!'s post starting "07048219aceb49e3027eb75c550a65f387fc15cd..."
6bd396edf898386958e47725a6e4acdfc1a74ce2efeb0451cd 02ebe0b65dd20db1dfaf9e381d35fb373da7666577c4da127e 2e6e5e5c0696f0fdbc68f3253b2f39f18d72d736f99dd3c0d3 e6eda8cb4aec77849a3e4e9b7a64c4e9
Old
Profile PM WWW Search
WetWired read his obituary with confusionWetWired read his obituary with confusionWetWired read his obituary with confusionWetWired read his obituary with confusion
 
 
WetWired
 



 
Reply
Posted 2007-04-27, 10:29 AM in reply to WetWired's post starting "6bd396edf898386958e47725a6e4acdfc1a74ce2..."
1a9c76670f9d2c6c529e5615c762e2dd8438fc564d52cc211c 42953bc0e2a11bd2bf3ce0db4b0b5ad924
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-27, 10:47 AM in reply to Asamin's post starting "Two things: 1. HAHA your not an admin..."
93A0E88FC7828581CA928E09C47F3753FF5E61432339AF8720 9EF71A03E90B90CC6AFC079E6EE3310ADB74EDA1C1F44E66 2D32428A95BE1ED98C1E B8ECB578E986AB9AD9AB07598A3FF66471FEB0151366052B30 A480B0C56ADAD3D91C357E794550F792B0CFD9437657291270 CCA3DF0258598C5BCEA39263526712283F741330430F2F7449 720A2C44674F15E5758598B01692A8007C955DD94278961685 0C24129E5223E147AF876827FE43599542B6D5F699831FE699 D134BFECF9A4F31FB2EFEAA56F03AE5A
Old
Profile PM WWW Search
WetWired read his obituary with confusionWetWired read his obituary with confusionWetWired read his obituary with confusionWetWired read his obituary with confusion
 
 
WetWired
 



 
Reply
Posted 2007-04-27, 11:53 AM in reply to WetWired's post starting "93A0E88FC7828581CA928E09C47F3753FF5E6143..."
good job wetty
Old
Profile PM WWW Search
Mantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to beMantralord seldom sees opportunities until they cease to be
 
 
Mantralord
 



 
Reply
Posted 2007-04-27, 11:55 AM in reply to Mantralord's post starting "good job wetty"
Fb290d87dae2c6a7d69e7f73f94aab89c4228dccff3a2a4a28 9b22b4caa96cd31cf90815e98e4f7377c0255eeb09ec9fc113 6f1dff9f56133ff06d0ce01fb1338601534ac1997633b416df 818222365c327430d65c7e78d601ae15f5adbfd3b1282d285a 33c8a6a3c9993c029d089725bf533009a0df564e90cb4970cf aedc7838f5a218d778a5a5f2fe0e692d0bc3b2e36f740b517a d7d5

Last edited by !King_Amazon!; 2007-04-27 at 12:14 PM.
Old
Profile PM WWW Search
!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics!King_Amazon! simplifies with no grasp of the basics
 
 
!King_Amazon!
 



 
Reply
Posted 2007-04-27, 12:28 PM in reply to !King_Amazon!'s post starting "Fb290d87dae2c6a7d69e7f73f94aab89c4228dcc..."
((encrypted))
Old
Profile PM WWW Search
Grav never puts off to tomorrow what can be done the day after tomorrowGrav never puts off to tomorrow what can be done the day after tomorrowGrav never puts off to tomorrow what can be done the day after tomorrowGrav never puts off to tomorrow what can be done the day after tomorrowGrav never puts off to tomorrow what can be done the day after tomorrow
 
 
Grav
 



 
Reply
Posted 2007-04-27, 03:17 PM in reply to !King_Amazon!'s post starting "Fb290d87dae2c6a7d69e7f73f94aab89c4228dcc..."
F82718d985 E2e5f5d38f 7f6fe95ffd 99947684c7 Ff23264929 833ba3caa9 7bc54ea811 1bf4dd577a 25d06319eb 5cd1828a09 3b08ba8d51 1334eb771a Af43f72a96 545d4dc68f 7827ba02de C3cb1f7446 28323fc805 6a639643a2 50a1ebf69d 8e60253503 2ac3b1f0c5 9a2147d51e 8d69b25326 12a8da4159 Dcdb1d27cf A9c33d76e6 Ea14ce70be Eef2bc2e73 3f0bdfeab6 767a0d5061 Dc9a38fe12 6a1ff7af3d 4ed931ce5e 2fd56ee385 266a511ffa Be075e51fe 0a6b821ec2 11bcc3aa0e 90a5e5ecd8 3de4b6d9d4 738b06d6d4 00bbac050c D93e8f1921 0901ac32ca B72d006cdb Ef86a8da64 Ee83ff4197 2444bbecc5 67bb0d1fbd Fca397ad50 14934a6b39 5ebc4ec059 1617

Last edited by WetWired; 2007-04-27 at 03:25 PM.
Old
Profile PM WWW Search
WetWired read his obituary with confusionWetWired read his obituary with confusionWetWired read his obituary with confusionWetWired read his obituary with confusion
 
 
WetWired
 
 

Bookmarks

« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules [Forum Rules]
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 04:48 PM.
'Synthesis 2' vBulletin 3.x styles and 'x79' derivative
by WetWired the Unbound and Chruser
Copyright ©2002-2008 zelaron.com
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.