ZachXBT has done some serious shenanigans. Previously, on Dragon Ball Z, ZachXBT noted the discovery of John Daghita a/k/a Lick stealing cryptocurrency from the United States government
His investigative shenanigans got the attention of some dork named Kash Patel.
His investigative shenanigans got the attention of some dork named Kash Patel.
β€47π€£34π₯°7π3π€3π2
vx-underground
ZachXBT has done some serious shenanigans. Previously, on Dragon Ball Z, ZachXBT noted the discovery of John Daghita a/k/a Lick stealing cryptocurrency from the United States government His investigative shenanigans got the attention of some dork named Kashβ¦
For those curious, "Lick" is facing some pretty serious charges. He has successfully racked up the standard cybercrime stuff but with bigger and fancier numbers
- Wire fraud (with a sprinkle of Theft of government property (18 U.S.C. Β§641)): 30 years in prison
- Money laundering: 20 years in prison
- Conspiracy (aggravated, US contractor, position of power).
Under current sentencing guidelines, if "Lick" pleads guilty and begs for forgiveness, he is facing 15 - 30 years in prison. If he walks into the court telling the Judge to suck his dick and starts urinating on the walls, he will receive 50 years in prison.
- Wire fraud (with a sprinkle of Theft of government property (18 U.S.C. Β§641)): 30 years in prison
- Money laundering: 20 years in prison
- Conspiracy (aggravated, US contractor, position of power).
Under current sentencing guidelines, if "Lick" pleads guilty and begs for forgiveness, he is facing 15 - 30 years in prison. If he walks into the court telling the Judge to suck his dick and starts urinating on the walls, he will receive 50 years in prison.
π€£80π₯°20π€8β€3π2π’1
vx-underground
> be kippu > some startup app or something > idfk > goes live > people sign up > realize it's vibe coded > nerds get silly > nerds do http get on api endpoint > dumps entire database *image censored, although it's all over xitter
I don't know what kind of programming logic allows a full DB dump on an HTTP Get, but it is very sophisticated and my little brain just doesn't understand
π€£124β€17π10π₯6π―3π₯°1π€1
Today Donald Trump fired Kristi Noem (lady in charge of DHS) while she was live on television.
I have never seen someone in this prestigious a position fired on live television (or any position, for that matter).
I'm not implying anything with this post.
But, it made me very, very, very, confused. I'm working on this new code thingy, check the internet, and I see this lady fired while she's doing a live press conference, she didn't even know she was fired yet and the banner on the screen says shes fired.
I'm like ???
I have never seen someone in this prestigious a position fired on live television (or any position, for that matter).
I'm not implying anything with this post.
But, it made me very, very, very, confused. I'm working on this new code thingy, check the internet, and I see this lady fired while she's doing a live press conference, she didn't even know she was fired yet and the banner on the screen says shes fired.
I'm like ???
π±65π€£40π₯°7β€5π€―3
vx-underground
Today Donald Trump fired Kristi Noem (lady in charge of DHS) while she was live on television. I have never seen someone in this prestigious a position fired on live television (or any position, for that matter). I'm not implying anything with this post.β¦
Some people asked if I'm trolling. No, I am not trolling, he seriously fired this lady on live tv
π€£116π₯°12π9β€4π±4π2
Big drama on the internet today as someone on Reddit posts a video tutorial on how to perform a self-orchiectomy at home (removal of the testicals).
Please do not perform surgeries on yourself.
Please do not perform surgeries on yourself.
π€£111π±30π€―20π―8β€3π3π₯°3π₯2π€2π2
Because people asked, "what's a Polymorphic Mutation Engine?", we'll talk about it. Truthfully, the name sounds kind of dangerous, or exotic, but in theory and implementation it's not too bad. The primary issue is it requires some prerequisite knowledge and if you don't have it, it gets funky and goopy really fast.
If you're familiar with high-level programming with class inheritance, this is not the same as object oriented polymorphism.
When coding (in literally any language) there is a concept of a mutation engine. As is tradition, it sounds fancy, but if you break it down it makes sense.
What's an engine? If you think of an automobile engine (beep, beep), it's what propels the vehicle forward using a bunch of really small explosions, or something, whatever the fuck "combustion" is.
Likewise, an "engine" in programming is something that takes something in and it results in ... a result.
An engine in a vehicle takes gasoline (something in) and the engine results in "a result" (propulsion, vehicle being able to move). You have a lot of different engines in programming such as search engines, rendering engines, game engines, etc.
In that particular case, a Polymorphic Mutation Engine receives something (code) and then mutates it (changes it). It is called "Polymorphic" because it means Poly (many) - Morph (changes). It changes many times.
If you're familiar with high-level programming with class inheritance, this is not the same as object oriented polymorphism.
When coding (in literally any language) there is a concept of a mutation engine. As is tradition, it sounds fancy, but if you break it down it makes sense.
What's an engine? If you think of an automobile engine (beep, beep), it's what propels the vehicle forward using a bunch of really small explosions, or something, whatever the fuck "combustion" is.
Likewise, an "engine" in programming is something that takes something in and it results in ... a result.
An engine in a vehicle takes gasoline (something in) and the engine results in "a result" (propulsion, vehicle being able to move). You have a lot of different engines in programming such as search engines, rendering engines, game engines, etc.
In that particular case, a Polymorphic Mutation Engine receives something (code) and then mutates it (changes it). It is called "Polymorphic" because it means Poly (many) - Morph (changes). It changes many times.
β€67π₯°3π1π1
vx-underground
Because people asked, "what's a Polymorphic Mutation Engine?", we'll talk about it. Truthfully, the name sounds kind of dangerous, or exotic, but in theory and implementation it's not too bad. The primary issue is it requires some prerequisite knowledge andβ¦
Mutation engines have two different components.
1. The thingy you want to change (code)
2. The thingy that does the changes (the engine).
How you implement both these components is tricky because you have to solve problems such as:
1. Where am I going to store the code that changes?
2. How will the engine make sure each "change" is unique?
Many people have the false belief that a mutation engine means the code changes as it runs, but that isn't necessarily true. While that is technically* possible, it is exceptionally rare and profoundly difficult to implement in any reasonable manner. How self-rewriting code is implemented is outside the scope of this, but it is only achievable with assembly (to the best of my knowledge, I haven't seen it in any other language).
Mutations usually occurs during "mutation events", basically a time when a program can safely change itself without everything imploding. These are usually:
1. Compilation time
2. Infection time
3. ???
Primitive mutation engines change when the binary is compiled. There are many examples of this online. The code is the same, but when you click "build" the result is different each time (the .exe looks different). This is achieved (usually) with a bunch of fancy macros.
More sophisticated mutation engines change code when it infects another program. How this is achieved is also kind of outside the scope of this because it requires a pretty heavy prerequisite knowledge on Microsoft PE files (.exe or .dlls).
??? because this is basically any other time your code can change without is imploding into itself. In my case, with my Polymorphic Mutation Engine, my program changes itself each time it terminates. In other words, when it finishes running and Windows says "ok mr. program go back to the harddrive", this is when my code takes the opportunity to mutate.
1. The thingy you want to change (code)
2. The thingy that does the changes (the engine).
How you implement both these components is tricky because you have to solve problems such as:
1. Where am I going to store the code that changes?
2. How will the engine make sure each "change" is unique?
Many people have the false belief that a mutation engine means the code changes as it runs, but that isn't necessarily true. While that is technically* possible, it is exceptionally rare and profoundly difficult to implement in any reasonable manner. How self-rewriting code is implemented is outside the scope of this, but it is only achievable with assembly (to the best of my knowledge, I haven't seen it in any other language).
Mutations usually occurs during "mutation events", basically a time when a program can safely change itself without everything imploding. These are usually:
1. Compilation time
2. Infection time
3. ???
Primitive mutation engines change when the binary is compiled. There are many examples of this online. The code is the same, but when you click "build" the result is different each time (the .exe looks different). This is achieved (usually) with a bunch of fancy macros.
More sophisticated mutation engines change code when it infects another program. How this is achieved is also kind of outside the scope of this because it requires a pretty heavy prerequisite knowledge on Microsoft PE files (.exe or .dlls).
??? because this is basically any other time your code can change without is imploding into itself. In my case, with my Polymorphic Mutation Engine, my program changes itself each time it terminates. In other words, when it finishes running and Windows says "ok mr. program go back to the harddrive", this is when my code takes the opportunity to mutate.
β€46π₯°9π―4π2π1
vx-underground
Mutation engines have two different components. 1. The thingy you want to change (code) 2. The thingy that does the changes (the engine). How you implement both these components is tricky because you have to solve problems such as: 1. Where am I going toβ¦
Okay, I'm tired of writing now. Here are some other topics to schizo rant about later:
- Why mutation engines are less common now
- How mutation engines are effective and also not effective
- How you can make code change
- Different types of mutation engines
- Mutation engines in different programming languages
- Why some things are engines and why some aren't
- Anime
- Why mutation engines are less common now
- How mutation engines are effective and also not effective
- How you can make code change
- Different types of mutation engines
- Mutation engines in different programming languages
- Why some things are engines and why some aren't
- Anime
π₯°64π₯17β€9π4
United States government big mad this week as a whistleblower leaks government documents on the internet.
Basically, the Department of Interior documents leaked showed the United States government plans on removing themes from National Parks about African American stuff, LGBT stuff, Climate Change, etc.
A Spokesman from the Department of Interior has stated the documents are edited and are intentionally misleading.
The biggest surprise is these documents were not leaked onto World of Tanks
Basically, the Department of Interior documents leaked showed the United States government plans on removing themes from National Parks about African American stuff, LGBT stuff, Climate Change, etc.
A Spokesman from the Department of Interior has stated the documents are edited and are intentionally misleading.
The biggest surprise is these documents were not leaked onto World of Tanks
π€£93π₯°50β€14β€βπ₯3π₯2π’2π―2π1π1
vx-underground
United States government big mad this week as a whistleblower leaks government documents on the internet. Basically, the Department of Interior documents leaked showed the United States government plans on removing themes from National Parks about Africanβ¦
War Thunder*, sorry. I made a mistake. I'm not big brain. Please stop bonking me. I'm sorry
π₯°74π15β€11π€―5π4π3π―3π2π€1
vx-underground
AceCareer-dot-edu WordPress site has been compromised and is currently being used to host malware. Ace is a high education institute in Manhattan, NY. I said, "omg theyre using higher educational institutes to deliver malware". Then I saw their universityβ¦
malwrhunterteam discovered this. Someone should probably tell AceCareer-dot-edu they're hosting malware in their wp-includes/certificate directory.
π₯°57π€£37β€11π’4π€1
We need to have a talk.
Some of you send me e-mails, or DMs, calling me "a cat". You say, "stinky cat", or "dumb cat", or "I know you're a cat".
What the fuck kind of psyop is this? It's not just one person, it's actually a lot of people.
I'm a human being, goddammit
Some of you send me e-mails, or DMs, calling me "a cat". You say, "stinky cat", or "dumb cat", or "I know you're a cat".
What the fuck kind of psyop is this? It's not just one person, it's actually a lot of people.
I'm a human being, goddammit
π101π€£55β€13π₯°8π’7π€―6π―5π€4π€4π±3π€2
vx-underground
Holy shit, Arion Kurtaj, the guy from LAPSUS who did the Rockstar Games compromise, smuggled a phone into prison (This is all over Rockstar forums, bro burned himself again)
Ah, it appears he knew it was going to get seized
π€£127π₯8π₯°6β€2
It's International Women's Day.
Thank women for raising the age of consent.
One of the biggest activists groups for raising the age of consent was the Womenβs Christian Temperance Union.
In the 1800's the age of consent in the United States was 10. In some states, such as Delaware, it was 7.
The WCTU pushed heavily to protect women from sexual exploitation, prostitution, and physical violence.
Obviously the history is more complex than just one group of women did something, but they were a major driving force.
Pic unrelated
Thank women for raising the age of consent.
One of the biggest activists groups for raising the age of consent was the Womenβs Christian Temperance Union.
In the 1800's the age of consent in the United States was 10. In some states, such as Delaware, it was 7.
The WCTU pushed heavily to protect women from sexual exploitation, prostitution, and physical violence.
Obviously the history is more complex than just one group of women did something, but they were a major driving force.
Pic unrelated
β€166π23π€14π’8π₯°6π€―3π€2π₯1
If you're curious what a basic position independent polymorphic mutation engine looks like in C (compiled as C++), this is what it looks like.
I'll do a write up later.
https://gist.github.com/vxunderground/75993f13f4e53fe1c551508cf2ddafe1
I'll do a write up later.
https://gist.github.com/vxunderground/75993f13f4e53fe1c551508cf2ddafe1
β€48π₯°10π€―5π1