And my suggestion would be to not bother trying.
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Unencrypting encrypted text
Collapse
X
-
-
You should know if it is salted because the salt values would be stored as well. Alternatively query for duplicate encrypted strings, unless the represented data (car reg.) is unique in which case that won't help.
A sample of one isn't very useful. Post a few more if you can.Comment
-
Surely they would;t be salted if they were encrypted?Originally posted by Contreras View PostYou should know if it is salted because the salt values would be stored as well. Alternatively query for duplicate encrypted strings, unless the represented data (car reg.) is unique in which case that won't help.
A sample of one isn't very useful. Post a few more if you can.Comment
-
-
It does look like base64 encoding that has been hacked a bit. I did that in Excel VBA to protect my passwords list, took a standard online GNU script and fiddled about with a few lines.
DL13 UHU comes out as QT/xMBEVRUX< in my script unfortunately so not the same hack.Last edited by xoggoth; 21 July 2015, 21:58.bloggoth
If everything isn't black and white, I say, 'Why the hell not?'
John Wayne (My guru, not to be confused with my beloved prophet Jeremy Clarkson)Comment
-
Looks to me like it's been encrypted with something where the output is the same size (rounding up to a block), and then that binary output has been base64 encoded for storage (rather than storing raw bytes).Originally posted by xoggoth View PostIt does look like base64 encoding that has been hacked a bit. I did that in Excel VBA to protect my passwords list, took a standard online GNU script and fiddled about with a few lines.
DL13 UHU comes out as QT/xMBEVRUX< in my script unfortunately so not the same hack.
I say that because it doesn't look like a plate number using any of the character encodings I used for the base64 decoded binary.
I don't think its RSA encrypted because it would grow substantially bigger.
I don't know much about hashing algorithms but I know MD5 would make it a lot larger too.
Maybe just synchronous AES encryption with base64 encoding.
But if the key is good then you've got no chance.
All that said, I'm far from expert.Comment
-
Unless they salt with a constant, or some other field such as date/name/whatever that is not labelled as the salt.Originally posted by Contreras View PostYou should know if it is salted because the salt values would be stored as well.Originally posted by MaryPoppinsI'd still not breastfeed a naziOriginally posted by vetranUrine is quite nourishingComment
-
True, although a constant salt is just one step up from useless.Originally posted by d000hg View PostUnless they salt with a constant, or some other field such as date/name/whatever that is not labelled as the salt.
I have an idea of the method and how it could be trivially attacked. But with a sample data set of only 1 it might as well be a random number generator.Comment
-
Here are a few more...
( again not sure if space has been removed )
AE07 GVD -> 4ZRxfz6IfsY=
PJ56 EDU -> IYE31M+sx5E=
YT51 YZM -> q8EXdgQXoOg=
The system creators are the types to find the first thing on google that they could copy and paste.Comment
-
haha well that bolluxed my theoryOriginally posted by minestrone View PostHere are a few more...
( again not sure if space has been removed )
AE07 GVD -> 4ZRxfz6IfsY=
PJ56 EDU -> IYE31M+sx5E=
YT51 YZM -> q8EXdgQXoOg=
The system creators are the types to find the first thing on google that they could copy and paste.
What is clear though is that the encrypted strings are all 8-chars, and so far the plaintext strings are also all 8-chars.
The next thing would be to inspect other reg's starting with D, A, P or Y, and reg's not 8-chars in length.Code:$~ base64 -d <<< Mw+w2j5CLBc= | od -An -t x1 33 0f b0 da 3e 42 2c 17 $~ base64 -d <<< q8EXdgQXoOg= | od -An -t x1 ab c1 17 76 04 17 a0 e8 $~ base64 -d <<< IYE31M+sx5E= | od -An -t x1 21 81 37 d4 cf ac c7 91 $~ base64 -d <<< 4ZRxfz6IfsY= | od -An -t x1 e1 94 71 7f 3e 88 7e c6
Or get hold of the source code!Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Post Office hit with ‘crazy’ £104million HMRC bill for IR35 failings Today 07:03
- IR35 & Right of Substitution in 2026/27: Explainer for Contractors Yesterday 06:59
- Why Rupert Lowe MP’s Restore Britain has it wrong on IR35 Feb 23 07:21
- IR35 & Control in 2026/27: Explainer for Contractors Feb 20 07:13
- How key for IR35 will Control be in 2026/27? Feb 20 07:13
- Changes to non-compete clauses in employment contracts require ministers to tread carefully Feb 19 07:59
- What does the non-compete clause consultation mean for contractors? Feb 19 07:59
- To escalate or wait? With late payment, even month two is too late Feb 18 07:26
- Signs of IT contractor jobs uplift softened in January 2026 Feb 17 07:37
- ‘Make Work Pay…’ heralds a new era for umbrella company compliance Feb 16 08:23

Comment