Hacking Articles Tips Tricks Videos Tutorials
470 subscribers
66.1K 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
After getting lots of requests for bypass WAF in my DMs about my previous writeup. I decided to make writeup. “Knowledge is free”. Without…Continue reading on Medium » (https://dewangpanchal98.medium.com/sql-injection-waf-bypass-f546f6fdf5ef?source=rss------bug_bounty-5)
SQL Injection — WAF Bypass!

After getting lots of requests for bypass WAF in my DMs about my previous writeup. I decided to make writeup. “Knowledge is free”. Without…Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
THE BRILLIANCE OF iOS.

https://cdn-images-1.medium.com/max/2000/1*JUnEoQ8_R8CbBDeC0UxEIg.png
“An iPod, a phone, an internet mobile communicator... these are NOT three separate devices! And we are calling it iPhone! Today Apple is…

Continue reading on Code TECHNIQ »
hacking: security in practice
Anyone know how to decrypt luac files

Its a game file used in cocos2d its original extension is lua and it uses sort of xxtea algorithm to encrypt the file. Any reverse engineering geeks here??

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

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
ABPTTS : TCP Tunneling Over HTTP/HTTPS For Web Application Servers

ABPTTS uses a Python client script and a web application server page/package[1] to tunnel TCP traffic over an HTTP/HTTPS connection to a web application server. In other words, anywhere that one could deploy a web shell, one should now be able to establish a full TCP tunnel. This permits making RDP, interactive SSH, Meterpreter, and […]

The post ABPTTS : TCP Tunneling Over HTTP/HTTPS For Web Application Servers appeared first on Kali Linux Tutorials.

___________________________
@hacking_Attack
@Hacking_Video
RedWarden - Flexible CobaltStrike Malleable Redirector
(previously known as proxy2's (https://github.com/mgeeky/proxy2) malleable_redirector plugin) Let's raise the bar in C2 redirectors IR resiliency, shall we?
Red Teaming business has seen several (https://bluescreenofjeff.com/2016-04-12-combatting-incident-responders-with-apache-mod_rewrite/) different (https://posts.specterops.io/automating-apache-mod-rewrite-and-cobalt-strike-malleable-c2-profiles-d45266ca642) great (https://gist.github.com/curi0usJack/971385e8334e189d93a6cb4671238b10) ideas on how to combat incident responders and misdirect them while offering resistant C2 redirectors network at the same time. This work combines many of those great ideas into a one, lightweight utility, mimicking Apache2 in it's roots of being a simple HTTP(S) reverse-proxy. Combining Malleable C2 profiles understanding, knowledge of bad IP addresses pool and a flexibility of easily adding new inspection and misrouting logic - resulted in having a crafty repellent for IR inspections.

___________________________
@hacking_Attack
@Hacking_Video
Should any invalid inbound packet reach RedWarden - you can redirect, reset or just proxy it away!
Abstract
This program acts as a HTTP/HTTPS reverse-proxy with several restrictions imposed upon inbound C2 HTTP requests selecting which packets to direct to the Teamserver and which to drop, similarly to the .htaccess file restrictions mandated in Apache2's mod_rewrite. RedWarden was created to solve the problem of IR/AV/EDRs/Sandboxes evasion on the C2 redirector layer. It's intended to supersede classical Apache2 + mod_rewrite setups used for that purpose. Features: Malleable C2 Profile parser able to validate inbound HTTP/S requests strictly according to malleable's contract and drop outlaying packets in case of violation (Malleable Profiles 4.0+ with variants covered) Ability to unfilter/repair unexpected and unwanted HTTP headers added by interim systems such as proxies and caches (think CloudFlare) in order to conform to a valid Malleable contract. Integrated curated massive blacklist of IPv4 pools and ranges known to be associated with IT Security vendors Grepable output log entries (in both Apache2 combined access log and custom RedWarden formats) useful to track peer connectivity events/issues Ability to query connecting peer's IPv4 address against IP Geolocation/whois information and confront that with predefined regular expressions (https://www.kitploit.com/search/label/Regular%20Expressions) to rule out peers connecting outside of trusted organizations/countries/cities etc. Built-in Replay attacks mitigation enforced by logging accepted requests' MD5 hashsums into locally stored SQLite database and preventing requests previously accepted. Allows to define ProxyPass statemtents to pass requests matching specific URL onto other Hosts Support for multiple Teamservers Support for many reverse-proxying Hosts/redirection sites giving in a randomized order - which lets load-balance traffic or build more versatile infrastructures Can repair HTTP packets according to expected malleable contract in case some of the headers were corrupted in traffic Sleepless nights spent on troubleshooting "why my Beacon doesn't work over CloudFlare/CDN/Domain Fronting" are over now thanks to detailed verbose HTTP(S) requests/responses logs The RedWarden takes Malleable C2 profile and teamserver's hostname:port on its input. It then parses supplied malleable profile sections to understand the contract and pass through only those inbound requests that satisfied it while misdirecting others. Sections such as http-stager, http-get, http-post and their corresponding uris, headers, prepend/append patterns, User-Agent are all used to distinguish between legitimate beacon's request and unrelated Internet noise or IR/AV/EDRs out of bound packets. The program benefits from the marvelous known bad IP ranges coming from: curi0usJack and the others: https://gist.github.com/curi0usJack/971385e8334e189d93a6cb4671238b10 Using an IP addresses blacklisting along with known bad keywords lookup through Reverse-IP DNS queries and HTTP headers inspection, brings the reliability to considerably increase redirector's resiliency to the unauthorized peers wanting to examine attacker infrastructures. Invalid packets may be misrouted according to three strategies: redirect: Simply redirect peer to another websites, such as Rick Roll. reset: Kill TCP connection straightaway. proxy: Fetch a response from another website, to mimic cloned/hijacked website as closely as possible. This configuration is mandated in configuration file: #
# What to do with the request originating not conforming to Beacon, whitelisting or
# ProxyPass inclusive statements:
# - 'redirect' it to another host with (HTTP 301),
# - 'reset' a TCP connection with connecting client
# - 'proxy' the request, acting as a reverse-proxy against specified action_url
# (may be dangerous if client fetches something it shouldn't supposed to see!)
#

___________________________
@hacking_Attack
@Hacking_Video