Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials Codecepticon : .NET Application That Allows You To Obfuscate C#, VBA/VB6 (Macros), And PowerShell Source Code Codecepticon is a .NET application that allows you to obfuscate C#, VBA/VB6 (macros), and PowerShell source code, and is developed…
le to Codecepticon. It will have to be the source code of the module itself (press Alt-F11 and copy the code from there). PowerShellDue to the complexity of PowerShell scripts, along with the freedom it provides in how to write scripts it is challenging to cover all edge cases and ensure that the obfuscated result will be fully functional. Although it’s expected for Codecepticon to work fine against simple scripts/functionality, running it against complex ones such as PowerView will not work – this is a work in progress. Obfuscating Command Line ArgumentsAfter obfuscating an application or a script, it is very likely that the command line arguments have also been renamed. The solution to this is to use the HTML mapping file to find what the new names are. For example, let’s convert the following command line:
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDsK0fGua7Rru0UFsVVpSn_l118UNmJiRxTjIZLqMC1npUXHouKxXS3kbjBqAZrHH5OYMmWS1bZToa2p8wa-Hdv87ZjPTa4c30C-YO0SpGoJrQQhdbj-UpOubxUTc5ru3PIPoQSohNW9brrwKsL3iFP7tB1k5hUwRmsJScTrN0BlnC5_-kF_Qo_1Hu/s465/Codecepticon8.png https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuHsNES-DwRO0V5q3sso7DJl4NPwlVJK_sZOL9iu8XR2XN35XNkB2_TkpV-PXQAZXaZR5xA_saZJMmUR4DZJ05kTFD805zogKycrSO50DJLFFvw9rEy6239t_7by37RJGHKkuCnpudnNhSB1pBk_WHxR8KnIRMLPRp_jvI4feR69FwnZUwZCCnkbg2/s455/Codecepticon6.png https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONAoaY5nYhmpfyjxBcsq-Kvff-eDEPijBCG2FfR63K3neM1gJx8EElCOBKwe2EdLP55c4qIftzCQBtX08Qyy8N0CBucAOyAxxrouKfl3TuojXZBSdZ8-1TmxRZv2bsV9ZyqnzVPdDNnM5uX-6wotXY0QfN0uJABT7PcYtNcUen7c9eRjwMCkpjROa/s450/Codecepticon7.png
And by replacing all strings the result is:
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-kuckq93wmtKUZtchal7y2D7ngKthpARHCK7E6RJsffyW_t4AgIRbduhAe0VKhRvVk3OxNzLRRrH24noshTI0gSeqwGDCpzOPb0_7GKeVnqmVCtI6ytRYOaDGaERpkxvfLl8WrrSwo9lEhOWZ7cAVIsYfNjYRl5u_9vKW_2nLgKq09MMuvb68Oh45/s366/Codecepticon5.png
Therefore it is critical to always test your result in a local environment first. Click Here To Download
SharpHound.exe --CollectionMethods DCOnly --OutputDirectory C:\temp\ By searching through the HTML mapping file for each argument, we get:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhDsK0fGua7Rru0UFsVVpSn_l118UNmJiRxTjIZLqMC1npUXHouKxXS3kbjBqAZrHH5OYMmWS1bZToa2p8wa-Hdv87ZjPTa4c30C-YO0SpGoJrQQhdbj-UpOubxUTc5ru3PIPoQSohNW9brrwKsL3iFP7tB1k5hUwRmsJScTrN0BlnC5_-kF_Qo_1Hu/s465/Codecepticon8.png https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuHsNES-DwRO0V5q3sso7DJl4NPwlVJK_sZOL9iu8XR2XN35XNkB2_TkpV-PXQAZXaZR5xA_saZJMmUR4DZJ05kTFD805zogKycrSO50DJLFFvw9rEy6239t_7by37RJGHKkuCnpudnNhSB1pBk_WHxR8KnIRMLPRp_jvI4feR69FwnZUwZCCnkbg2/s455/Codecepticon6.png https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjONAoaY5nYhmpfyjxBcsq-Kvff-eDEPijBCG2FfR63K3neM1gJx8EElCOBKwe2EdLP55c4qIftzCQBtX08Qyy8N0CBucAOyAxxrouKfl3TuojXZBSdZ8-1TmxRZv2bsV9ZyqnzVPdDNnM5uX-6wotXY0QfN0uJABT7PcYtNcUen7c9eRjwMCkpjROa/s450/Codecepticon7.png
And by replacing all strings the result is:
ObfuscatedSharpHound.exe --AphylesPiansAsp TurthsTance --AnineWondon C:\temp\ However, some values may exist in more than one category:https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh-kuckq93wmtKUZtchal7y2D7ngKthpARHCK7E6RJsffyW_t4AgIRbduhAe0VKhRvVk3OxNzLRRrH24noshTI0gSeqwGDCpzOPb0_7GKeVnqmVCtI6ytRYOaDGaERpkxvfLl8WrrSwo9lEhOWZ7cAVIsYfNjYRl5u_9vKW_2nLgKq09MMuvb68Oh45/s366/Codecepticon5.png
Therefore it is critical to always test your result in a local environment first. Click Here To Download
CVE-2022–42710: A journey through XXE to Stored-XSS
Hi everybody, I will share with you in this article in detail how I was able to find CVE-2022–42710 through static analysisContinue reading on Medium »
Read more...
Hi everybody, I will share with you in this article in detail how I was able to find CVE-2022–42710 through static analysisContinue reading on Medium »
Read more...
Simple CORS misconfig leads to disclose the sensitive token worth of $$$
https://0xraminfosec.medium.com/simple-cors-misconfig-leads-to-disclose-the-sensitive-token-worth-of-91433763f4d6?source=rss------bug_bounty-5
https://0xraminfosec.medium.com/simple-cors-misconfig-leads-to-disclose-the-sensitive-token-worth-of-91433763f4d6?source=rss------bug_bounty-5
Hey fellow hacker’s and Bug hunters , Recently i found some weird CORS misconfiguration in one of my targets.Continue reading on Medium » (https://0xraminfosec.medium.com/simple-cors-misconfig-leads-to-disclose-the-sensitive-token-worth-of-91433763f4d6?source=rss------bug_bounty-5)
CVE-2022–42710: A journey through XXE to Stored-XSS
https://omar0x01.medium.com/cve-2022-42710-a-journey-through-xxe-to-stored-xss-851d74dfe917?source=rss------bug_bounty-5
https://omar0x01.medium.com/cve-2022-42710-a-journey-through-xxe-to-stored-xss-851d74dfe917?source=rss------bug_bounty-5
Hi everybody, I will share with you in this article in detail how I was able to find CVE-2022–42710 through static analysisContinue reading on Medium » (https://omar0x01.medium.com/cve-2022-42710-a-journey-through-xxe-to-stored-xss-851d74dfe917?source=rss------bug_bounty-5)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
GitHub anuncia escaneo secreto gratuito para todos los repositorios públicos
https://cdn-images-1.medium.com/max/1293/0*Roupl0VqtaPJTU0b
GitHub dijo el jueves que está poniendo a disposición su servicio de escaneo secreto para todos los repositorios públicos en la plataforma…
Continue reading on Medium »
GitHub anuncia escaneo secreto gratuito para todos los repositorios públicos
https://cdn-images-1.medium.com/max/1293/0*Roupl0VqtaPJTU0b
GitHub dijo el jueves que está poniendo a disposición su servicio de escaneo secreto para todos los repositorios públicos en la plataforma…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
The Importance of Self Custody
https://cdn-images-1.medium.com/max/1200/0*-MtZy06hicTnTlmT
A Self custody wallet is a wallet that you hold the keys for, giving you ownership of and control over the funds it holds. Learn more.
Continue reading on Medium »
The Importance of Self Custody
https://cdn-images-1.medium.com/max/1200/0*-MtZy06hicTnTlmT
A Self custody wallet is a wallet that you hold the keys for, giving you ownership of and control over the funds it holds. Learn more.
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
IWCON2022 Networking Rooms Are Now Open + New Speaker Announcement
https://cdn-images-1.medium.com/max/1149/1*X2C_TKOy7MIrKdbpXjQgBA.png
Join in on some super cool infosec discussions from experts all over the world!
Continue reading on InfoSec Write-ups »
IWCON2022 Networking Rooms Are Now Open + New Speaker Announcement
https://cdn-images-1.medium.com/max/1149/1*X2C_TKOy7MIrKdbpXjQgBA.png
Join in on some super cool infosec discussions from experts all over the world!
Continue reading on InfoSec Write-ups »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Simple CORS misconfig leads to disclose the sensitive token worth of $$$
https://cdn-images-1.medium.com/max/640/1*uemwkdK6thWOKufTChnK5A.gif
Hey fellow hacker’s and Bug hunters , Recently i found some weird CORS misconfiguration in one of my targets.
Continue reading on Medium »
Simple CORS misconfig leads to disclose the sensitive token worth of $$$
https://cdn-images-1.medium.com/max/640/1*uemwkdK6thWOKufTChnK5A.gif
Hey fellow hacker’s and Bug hunters , Recently i found some weird CORS misconfiguration in one of my targets.
Continue reading on Medium »