Sponsored Content
Top Forums Web Development Random - Any help decoding obfuscated code? Post 302777313 by DGPickett on Thursday 7th of March 2013 03:49:26 PM
Old 03-07-2013
A census of the base-64-decoder output shows 15 parens and one pair of curly braces, so it may be reencoded in sections:

ct dec hex octal iso8859-1
282 034 22 042 '"'
146 036 24 044 '$'
15 040 28 050 '('
15 041 29 051 ')'
424 043 2b 053 '+'
6 044 2c 054 ','
120 046 2e 056 '.'
468 047 2f 057 '/'
725 048 30 060 '0'
761 049 31 061 '1'
680 050 32 062 '2'
784 051 33 063 '3'
766 052 34 064 '4'
823 053 35 065 '5'
884 054 36 066 '6'
681 055 37 067 '7'
702 056 38 070 '8'
771 057 39 071 '9'
1 058 3a 072 ':'
136 059 3b 073 ';'
135 061 3d 075 '='
1 063 3f 077 '?'
1 064 40 100 '@'
415 065 41 101 'A'
378 066 42 102 'B'
430 067 43 103 'C'
399 068 44 104 'D'
377 069 45 105 'E'
427 070 46 106 'F'
375 071 47 107 'G'
420 072 48 110 'H'
446 073 49 111 'I'
441 074 4a 112 'J'
400 075 4b 113 'K'
430 076 4c 114 'L'
422 077 4d 115 'M'
368 078 4e 116 'N'
400 079 4f 117 'O'
396 080 50 120 'P'
368 081 51 121 'Q'
380 082 52 122 'R'
435 083 53 123 'S'
410 084 54 124 'T'
392 085 55 125 'U'
360 086 56 126 'V'
430 087 57 127 'W'
419 088 58 130 'X'
359 089 59 131 'Y'
395 090 5a 132 'Z'
226 092 5c 134 '\'
4 095 5f 137 '_'
673 097 61 141 'a'
721 098 62 142 'b'
790 099 63 143 'c'
706 100 64 144 'd'
728 101 65 145 'e'
637 102 66 146 'f'
441 103 67 147 'g'
456 104 68 150 'h'
464 105 69 151 'i'
414 106 6a 152 'j'
372 107 6b 153 'k'
384 108 6c 154 'l'
430 109 6d 155 'm'
457 110 6e 156 'n'
429 111 6f 157 'o'
402 112 70 160 'p'
475 113 71 161 'q'
417 114 72 162 'r'
406 115 73 163 's'
418 116 74 164 't'
400 117 75 165 'u'
362 118 76 166 'v'
461 119 77 167 'w'
528 120 78 170 'x'
390 121 79 171 'y'
421 122 7a 172 'z'
1 123 7b 173 '{'
1 125 7d 175 '}'
32813 Total
 

9 More Discussions You Might Find Interesting

1. Programming

Obfuscated C

Well this year i decided to enter the International Obfuscated C Code Contest. This was my first attempt at writing obfuscated C (at least purposely), so I am sure that this is kids-stuff for the real obfuscation gurus. Anyway, the results are out, and I am not a finalist (I wasn't expecting to... (5 Replies)
Discussion started by: PxT
5 Replies

2. UNIX for Dummies Questions & Answers

scp transmits ok but random return code

Appreciate your thoughts....I m very new to this. Anyone here have the similar experience and work around. Thanks. Use scp to send a file from HP-UX to SUN box successfully but return code randomly being generated. The majority of time reports 1 (meaning not ok) and sometime 0 (OK). When scp... (0 Replies)
Discussion started by: huiraym
0 Replies

3. Shell Programming and Scripting

decoding commands

hi please can anyone help me in decoding shell commands. i need a way to decode the encrypted shell commands. (8 Replies)
Discussion started by: rochitsharma
8 Replies

4. IP Networking

Packet decoding

Hi, wondering if anyone can suggest a tool to me that will let me either cut & paste hex or type it in for packet decoding. I want to be able to decode a packet as done with tcpdump or wireshark, but I want to be able to manually input the hex myself. (2 Replies)
Discussion started by: Breakology
2 Replies

5. Ubuntu

expect script for random password and random commands

Hi I am new to expect. Please if any one can help on my issue its really appreciable. here is my issue: I want expect script for random passwords and random commands generation. please can anyone help me? Many Thanks in advance (0 Replies)
Discussion started by: vanid
0 Replies

6. UNIX for Dummies Questions & Answers

Decoding a string

Hi, If my input string is 3a3b4c then my result should be aaabbbcccc. Please guide me how to achieve this in a bash script. Thanks (18 Replies)
Discussion started by: pandeesh
18 Replies

7. Shell Programming and Scripting

Removing obfuscated javascript from js files

ello, I am trying to remove obfuscated code in multiple files on a server, the malicious code is surronded by /*km0ae9gr6m*//*qhk6sa6g1c*/ I had success removing from some files using this command sed -i ':strt;s|/\*km0ae9gr6m\*/*/\*qhk6sa6g1c\*/||g;/\/\*km0ae9gr6m\*\//{N;b strt}'... (5 Replies)
Discussion started by: cuantica
5 Replies

8. Shell Programming and Scripting

Need to generate a file with random data. /dev/[u]random doesn't exist.

Need to use dd to generate a large file from a sample file of random data. This is because I don't have /dev/urandom. I create a named pipe then: dd if=mynamed.fifo do=myfile.fifo bs=1024 count=1024 but when I cat a file to the fifo that's 1024 random bytes: cat randomfile.txt >... (7 Replies)
Discussion started by: Devyn
7 Replies

9. Shell Programming and Scripting

FTP decoding

I am trying to understand a UNIX script which FTPs certain files from a remote location to the local machine. I understand the basic FTP command but the UNIX script uses the following command: ftp -n -i -v > $logftp_trg 2>&1 <<! open $MFX_FTP_SERVER user $MFX_FTP_LOGIN $MFX_FTP_PWD Can anyone... (5 Replies)
Discussion started by: Bhavesh Sharma
5 Replies
Crypt::Random::Source::Factory(3pm)			User Contributed Perl Documentation		       Crypt::Random::Source::Factory(3pm)

NAME
Crypt::Random::Source::Factory - Load and instantiate sources of random data SYNOPSIS
use Crypt::Random::Source::Factory; my $f = Crypt::Random::Source::Factory->new; my $strong = $f->get_strong; my $weak = $f->get_weak; my $any = $f->get; DESCRIPTION
This class implements a loading and instantiation factory for Crypt::Random::Source objects. If $ENV{CRYPT_RANDOM_NOT_PLUGGABLE} is set then only a preset list of sources will be tried. Otherwise Module::Find will be used to locate any installed sources, and use the first available one. METHODS
get %args Instantiate any random source, passing %args to the constructor. The "type" argument can be "weak", "strong" or "any". get_weak %args get_strong %args Instantiate a new weak or strong random source. AUTHOR
Yuval Kogman <nothingmuch@woobling.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Yuval Kogman. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2011-01-05 Crypt::Random::Source::Factory(3pm)
All times are GMT -4. The time now is 11:39 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy