I don't know anything about coding

Joined
Apr 1, 2022
Messages
1
Reaction score
0
I have a sample of code... I thought it was base64 but, like the title says, I don't know diddly squat about coding. I'm just learning myself about alternate data streams. While getting contents, this crap spilled all over my powershell - it was, in fact, the only thing that was there. The file I'm attaching is just a random snippet from a much larger spew of characters.
And while I'm on the ADS kick, if anybody has any advice, hints, tips or is available to shake their head at stupid questions (just not dismissively,) a little help could probably prevent me from going totally crazy. Just sayin'
Peace!
J
 

Attachments

  • PowerSpew.txt
    2.1 KB · Views: 41
Joined
Apr 18, 2021
Messages
274
Reaction score
59
Those strange characters are typically what you see if you open a binary file in Notepad. A binary file doesn't contain text (encoded in ASCII) but contains binary digital data - which Notepad doesn't know how to interpret. This file might be executable program code, binary configuration data, or even a compressed backup file.

If you think the file should contain program code then it's likely this file is the executable code (generated by a compiler) rather than the source code (in text format).
 
Joined
Jun 29, 2022
Messages
2
Reaction score
0
As Ubuysa said, this is not a .txt file, format of the file saved is not correct so you are seeing binary configuration data.
 
Joined
Sep 26, 2017
Messages
3,454
Reaction score
616
Notepad++ can open a large number of file formats but the above-attached file still only results in machine language.

1656505919194.png
 
Joined
May 9, 2022
Messages
2
Reaction score
0
Yes, this file has been compiled - any excerpts from it will be meaningless.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top