Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
65.9K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
WMEye - A Post Exploitation Tool That Uses WMI Event Filter And MSBuild Execution For Lateral Movement

WMEye is an experimental tool that was developed when exploring about Windows WMI. The tool is developed for performing Lateral Movement using WMI and remote MSBuild Execution. It uploads the encoded/encrypted shellcode into remote targets WMI Class Property, create an event filter that when triggered writes an MSBuild based Payload using a special WMI Class called LogFileEventConsumer and finally executes the payload remotely. UseCase Fileless Lateral Movement using WMI, can be used with Cobalt Strike's Execute-Assembly Note: This is still in experimental stage and no where near to be used in a real engagement. Current Working Creates a Remote WMI Class Writes Shellcode as property value to the above created Fake WMI Class Creates a WMI Event Filter to trigger on powershell.exe process creation On Event Trigger, it Uploads MSBuild Payload into remote system using LogFileEventConsumer (A WMI Consumer type to write Log Files) Finally Invoke Win32_Process Create to call MSbuild remotely The MSBuild Payload fetches encoded shellcode from WMI Class Property, decodes and executes it. Upcoming Features Replace WIN32_Process Create method of invocation with something better Add GZIP Compression for Shellcode and XML File Bytes Add NTLM PTH Support Add CleanUp Functions for removing event filter after the logfileeventconsumer finished writing the MSBuild Payload Whats Unique in this Project ? Uploads the encoded/encrypted shellcode to remote machines WMI property on a Created Fake Class (can maybe tweak to write shellcode into existing class's Property) Uses LogFileEventConsumer to upload MSBuild File , instead of relying in spawning Powershell.exe using win32_process Create Credits https://www.fireeye.de/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf Download WMEye
Read more...

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Ipsourcebypass : This Python Script Can Be Used To Bypass IP Source Restrictions Using HTTP Headers

Ipsourcebypass is a Python script that can be used to bypass IP source restrictions using HTTP headers.

Features

* 17 HTTP headers.
* Multithreading.
* JSON export with --json outputfile.json.
* Auto-detecting most successful bypasses.

Usage

$ ./ipsourcebypass.py -h
[~] IP source bypass using HTTP headers, v1.2
usage: ipsourcebypass.py [-h] [-v] -i IP [-t THREADS] [-x PROXY] [-k] [-L] [-j JSONFILE] [-C] [-H HEADERS] [-S] url
This Python script can be used to test for IP source bypass using HTTP headers
positional arguments:
url e.g. https://example.com:port/path
optional arguments:
-h, –help show this help message and exit
-v, –verbose arg1 help message
-i IP, –ip IP IP to spoof.
-t THREADS, –threads THREADS
Number of threads (default: 5)
-x PROXY, –proxy PROXY
Specify a proxy to use for requests (e.g., http://localhost:8080)
-k, –insecure Allow insecure server connections when using SSL (default: False)
-L, –location Follow redirects (default: False)
-j JSONFILE, –jsonfile JSONFILE
Save results to specified JSON file.
-C, –curl Generate curl commands for each request.
-H HEADERS, –header HEADERS
arg1 help message
-S, –save Save all HTML responses.

Auto-detecting responses that stands out

Results are sorted by uniqueness of their response’s length. This means that the results with unique response length will be on top, and results with response’s length occurring multiple times at the bottom:
https://blogger.googleusercontent.com/img/a/AVvXsEgxBhFQ5FJtOaOabHz8rQ03DE05PLDajkFbEqhzUlaoVR_Idx3PxGyFD54iav5aioGEcKveqRVV7wIqdQECKbHXQ9sHarO3yIo38iKXqGABOhd5Pyz9hwHOk0OR1yfqxYEM2e6-5Tf2BEFuR6ECmzCgHoP0jfK_FGRr1K40-Mn7L8abEol6aARp43IR=s1390

Download

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Phant0m : Windows Event Log Killer

Phant0m is a Windows Event Log Killer. Svchost is essential in the implementation of so-called shared service processes, where a number of services can share a process in order to reduce resource consumption. Grouping multiple services into a single process conserves computing resources, and this consideration was of particular concern to NT designers because creating Windows processes takes more time and consumes more memory than in other operating systems, e.g. in the Unix family.1

This means briefly that; On Windows operating systems, svchost.exe manages the services and services are actually running under svchost.exe’s as threads. Phant0m targets the Event Log service and finding the process responsible for the Event Log service, it detects and kills the threads responsible for the Event Log service. Thus, while the Event Log service appears to be running in the system (because Phant0m didn’t kill process), it does not actually run (because Phant0m killed threads) and the system does not collect logs. How It Works & How To Usehttps://blogger.googleusercontent.com/img/a/AVvXsEg2_01thzc67nquNTBaDgQjr-F1V0s3y1AGMdmqa7rfTxsOiEg9qrzEOOUW-qt3H0hwYHldkgC9W2mdQzjNWZ24uhLEdSCh0CA7QMK4GXynvnEI7_hFdFP80e9Nhp45FGPhJhJzw6mg2ZHFvbAdGYupT-YazVCgfcuCJskJB0UyeZSSNjJLV4r3zzSL=s1367 Detecting Event Log ServicePhant0m uses two different options to detect the Process ID of the Event Log service. The first is to detect via the SCM (Service Control Manager) and the second is to detect via WMI (Windows Management Instrumentation). With which method you want Phant0m to detect the Process ID of the Event Log service, change the following lines in the main.cpp file.

For example, if you want the Process ID to be detected via SCM, you should edit it as follows. (Do not set all values at the same time, set only the one technique you want.

// PID detection techniques configuration section.
define PID_FROM_SCM 1 // If you set it to 1, the PID of the Event Log service is obtained from the Service Manager.
define PID_FROM_WMI 0 // If you set it to 1, the PID of the Event Log service is obtained from the WMI.

For example, if you want threads to be killed using Technique-1, you should edit it as follows. (Do not set all values at the same time, set only the one technique you want.

TID detection and kill techniques configuration section.
define KILL_WITH_T1 1 // If you set it to 1, Technique-1 will be use. For more information; https://github.com/hlldz/Phant0m
define KILL_WITH_T2 0 // If you set it to 1, Technique-2 will be use. For more information; https://github.com/hlldz/Phant0m Detecting and Killing ThreadsPhant0m uses two different options to detect and kill the threads of the Event Log service. Technique-1When each service is registered on a machine running Windows Vista or later, the Service Control Manager (SCM) assigns a unique numeric tag to the service (in ascending order). Then, at service creation time, the tag is assigned to the TEB of the main service thread. This tag will then be propagated to every thread created by the main service thread. For example, if the Foo service thread creates an RPC worker thread (note: RPC worker threads don’t use the thread pool mechanism more on that later), that thread will have the Service Tag of the Foo service.2

So, in this technique Phant0m will detect threads of Event Log service with NtQueryInformationThread API to get the thread’s TEB address and read the SubProcessTag from the TEB. Then it kills the threads related to the Event Log service. The codes for this technique are in the technique_1.hfile. Technique-2In this technique, Phant0m detects the names of DLLs associated with threads. Windows Event Log Service uses wevtsvc.dll. Full path is %WinDir%\System32\wevtsvc.dll. If the [...]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Kali Linux Tutorials Phant0m : Windows Event Log Killer Phant0m is a Windows Event Log Killer. Svchost is essential in the implementation of so-called shared service processes, where a number of services can share a process in order to reduce resource consumption.…
thread is using that DLL, it is the Windows Event Log Service’s thread and then Phant0m kills the thread. The codes for this technique are in the technique_2.hfile. UsageYou can use Phant0m both as a standalone EXE and as a Reflective DLL. Open the project in Microsoft Visual Studio, make the settings (select the detection and kill techniques) and compile. You can also use the Reflective DLL version with Cobalt Strike, for this there is an Aggressor Script file (phant0m.cna) in the repository.
https://blogger.googleusercontent.com/img/a/AVvXsEjEAD06NNvKnW7yusHdosZc6pyh_Uk8U39gTFTzg4q81vSIWQksfm7hBYx_bKroVn1bWrHFKNOTq7mEovXnILtIdGa2vOABRLi-9YJuTjrq3C8_M8uIKdQDXUzM8HALCAMA-wiJSoL5GDLjx1tHTifqyQDpPQZ57b6zjru2qT_355FAdVZQy5hpIUsZ=s2400
Fork and inject method was used with bdllspawnin the execution type of Aggressor Script (phant0m.cna) for Cobalt Strike. If you want to inject Phant0m into your existing process and run it, you can review this project (https://github.com/rxwx/cs-rdll-ipc-example) and you can do it easily. You can also convert the code to DLL and then to Shellcode with Donut.

NOTE: The project only supports x64 architecture. Download

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Hello

Recently a great Australian cricketer Shane Warne died at at young 52 from a heart attack, all over Australian instagram accounts a disgusting person with the name @shanewarnedeservesdeathhaha is mocking his death, I’m just wondering if anyone is able to get his IP address and leak his address or fuck up his internet. Cheers the account

submitted by /u/RevolutionSouthern34
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
WMEye - A Post Exploitation Tool That Uses WMI Event Filter And MSBuild Execution For Lateral Movement

https://blogger.googleusercontent.com/img/a/AVvXsEhVUekhyfl8R_dEBxNFTNHCKXteQuSz2CZGIC7roLiaceI5LUkDHclvk838hosVEk0q2SXI9T9Q5gFnMlM3S-ObW5x1a36hEWjplBkb53XCqAm9XzTNmF0nl4JmTVRLhN0Ec5o1gyhG4K3qkxdAvGaRajrCMx2G6V3_CNOqQKjMgl-AtB5EvVwIi7W8=w640-h232
WMEye is an experimental tool that was developed when exploring about Windows WMI. The tool is developed for performing Lateral Movement using WMI and remote MSBuild Execution. It uploads the encoded/encrypted shellcode into remote targets WMI Class Property, create an event filter that when triggered writes an MSBuild based Payload using a special WMI Class called LogFileEventConsumer and finally executes the payload remotely.
UseCase

Fileless Lateral Movement using WMI, can be used with Cobalt Strike's Execute-Assembly

Note: This is still in experimental stage and no where near to be used in a real engagement.
Current Working

* Creates a Remote WMI Class
* Writes Shellcode as property value to the above created Fake WMI Class
* Creates a WMI Event Filter to trigger on powershell.exe process creation
* On Event Trigger, it Uploads MSBuild Payload into remote system using LogFileEventConsumer (A WMI Consumer type to write Log Files)
* Finally Invoke Win32_Process Createto call MSbuild remotely

The MSBuild Payload fetches encoded shellcode from WMI Class Property, decodes and executes it.

Upcoming Features

* Replace WIN32_Process Create method of invocation with something better
* Add GZIP Compression for Shellcode and XML File Bytes
* Add NTLM PTH Support
* Add CleanUp Functions for removing event filter after the logfileeventconsumer finished writing the MSBuild Payload

Whats Unique in this Project ?

* Uploads the encoded/encrypted shellcode to remote machines WMI property on a Created Fake Class (can maybe tweak to write shellcode into existing class's Property)
* Uses LogFileEventConsumer to upload MSBuild File , instead of relying in spawning Powershell.exe using win32_process Create

Credits

https://www.fireeye.de/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf
Download WMEye

___________________________
@hacking_Attack
@Hacking_Video
Dark Reading: Attacks/Breaches
What Kind Of Security Tools Should I Provide My Developers?

Who says developers don't care about security? Give them the tools to help them build security into their code.
Dark Reading: Attacks/Breaches
How Should My Security Analyst Use the MITRE ATT&CK Framework?

As a curated knowledgebase for adversary behavior, the MITRE ATT&CK framework can guide defenders on how to conduct an investigation and the order of things to look for.
Dark Reading: Attacks/Breaches
Would 'Cyber Geneva Conventions' Defuse Online Aggression?

International treaties could force nation-states to police bad actors within their borders to avoid penalties.
Hats Finance Opens New Bug Bounty Program with Fuji DAO

About Fuji DAOContinue reading on Medium »
Read more...