hacking vidhya
Open in Telegram
No data
Subscribers
-824 hours
-137 days
+3730 days
Posts Archive
MINIMUM LANGUAGE A HACKER MUST KNOW:
1) SQL : DATABASE MANIPULATION + COMPROMISING INJECTION
2) PYTHON : EXPLOITS , TOOLS DEVLOPMENTS , AUTOMATION ETC
3)GO : AN RUNTIME ENVIRONMENTAL BASED LANGUAGE FOR BEST TOOLS DEVLOPMENTS OR FRAMEWORK ; PROJECTS LIKE : VOIP , API,S integration ETC
4) BASH / SHELL SCRIPTING : ITS MUST FOR LINUX BASED DEVLOPMENTS AND TOOLS OF ALL KIND
5) JAVA SCRIPT: PAYLOAD DEVLOPMENTS FOR WEB APPLICATIONS AND CAN ALSO PWN BY JAVA SCRIPT
SO THAT'S ALL HAPPY HACKING ❤️🧠
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
Bug- Admin Panel Bypass #bugbounty
1- Take it Admin login panel
2- Enter username= admin and wrong passwd
3- click login & capture in burp
4- Do intercept
5- Update {"status":"0"} to
{"status":"1","user_type":"admin"}
6- Admin console bypass :)
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
🔥 eJPT Certificate Voucher Available! 🔥
🚀 Get your eJPT voucher now for just ₹6500! 🚀
💻 Boost your cybersecurity career with the eLearnSecurity Junior Penetration Tester (eJPT) certification.
🔒 Validate your ethical hacking skills and take your career to the next level!
⚡️ Limited stock available! DM @stexe to grab yours today! ⚡️
SMS Sender ID Spoof Script
This is a script that uses the Vonage API to send SMS with a customized sender so that when it reaches the other person a name or a phone number different from the one that has been sent.
This script requires a secret token which will now be left as a script reference but has an event in the group which can be used directly from the group for free.
The use of this script can be very varied in many places, it is recommended not to be used for prohibited topics, there will also be a draw soon in the group when we reach 200 members to sort the script.
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
SMS Sender ID Spoof
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
)
type VonageSMS struct {
APIKey string `json:"api_key"`
APISecret string `json:"api_secret"`
From string `json:"from"`
To string `json:"to"`
Text string `json:"text"`
ClientRef string `json:"client_ref"`
}
func sendSMS() {
url := "https://rest.nexmo.com/sms/json"
message := VonageSMS{
APIKey: "Null",
APISecret: "Null",
From: "Facebook",
To: "+",
Text: "H",
ClientRef: "MSG-12345",
}
jsonData, _ := json.Marshal(message)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error al enviar SMS:", err)
return
}
defer resp.Body.Close()
fmt.Println("SMS enviado con ID:", message.ClientRef)
}
func main() {
sendSMS()
}🔥 Best SX.org Proxy Service – Get 30% OFF! 🔥
Looking for the best proxy service? SX.org provides high-speed, reliable, and secure proxies for all your needs. Whether it’s web scraping, anonymity, or bypassing restrictions, SX.org has you covered!
💥 Limited-Time Offer: Get 30% OFF using code HACKING-VIDHYA30 at checkout! 💥
🔹 Fast & Secure
🔹 High Anonymity
🔹 24/7 Support
Don’t miss out on this exclusive deal! Grab your discounted proxies now and experience the best performance.
👉 Visit SX.org & use HACKING-VIDHYA30 today! 🚀
https://www.numoucenter.org/phpmyadmin/sql.php?db=wordpress&token=bacc759342e6b182bebba2de0ff7fe76&goto=db_structure.php&table=nu_user_cards&pos=0
DB_HOST=localhost
DB_DATABASE=wordpress
DB_PORT=3306
DB_USERNAME=wproot
DB_PASSWORD=LetsEncrypt07
DB_TABLE_PREFIX= nu_
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
WEB APPLICATION PENTESTETING ON MOBILE:
1) DH Hackbar
Used for injecting payloads and many more
Download:https://github.com/darknethaxor/DH-HackBar/releases/download/v1.1/Latest.apk
2) mini burp : Httpcanry
Similar like burpsuite to intercept request
DOWNLOAD: https://m.apkpure.com/httpcanary-%E2%80%94-http-sniffer-capture-analysis/com.guoshi.httpcanary/download?from=amp_detail
3) ENABLE DEVLOPER TOOLS IN BROWSER (FIREFOX)
javascript:(function () {var script=document.createElement('script');script.src="//cdn.jsdelivr.net/npm/eruda";document.body.appendChild(script); script.onload = function () { eruda.init() } })();
SAVE THIS CODE AT BOOKMARK IN URL SECTION >> CLICK ON BOOKMARK WHENEVER U NEED TO INSPECT IN SITE
4) Terminal : run CLI TOOLS
I never preferred to use termux
EITHER DOWNLOAD NETHUNTER WITH ROOT
or setup a vps and use it in SSH:22
Note :- this for those who fucking crying in dm and group that I can't afford a pc so can't START learning .
+1
Amouranth’s Twitter post prevents $20M crypto heist
Amouranth, known for her presence on OnlyFans and social media, once revealed her 211 BTC holdings. In 2025, burglars attempted to steal her funds by breaking into her home, but she managed to send a tweet asking for help, ultimately foiling their plans.
Crypto investors are once again reminded: online flexing might impress followers, but it also attracts unwanted attention.
☝️
Prototype Pollution Vulnerability
Prototype Pollution is a security vulnerability in JavaScript that allows an attacker to add arbitrary properties to the prototype (the root object) of a general object. This enables an attacker to modify object properties that would typically be inaccessible.
However, this vulnerability alone is not always exploitable. To increase its impact, an attacker often combines it with other vulnerabilities like Cross-Site Scripting (XSS) to execute malicious actions.
━━━━━━━━━━━━━━━━━━
Understanding JavaScript Object Prototypes
In JavaScript, everything is an object. An object is essentially a collection of key-value pairs where values can be of any data type, such as boolean, string, integer, etc.
Creating an object in JavaScript is simple:
let userInfo = {
"username": "admin",
"password": "1qaz2wsx3edc",
"email": "admin@victim.com"
};
To access properties of this object, we can use two methods:
1-Dot notation:
userInfo.username;
Bracket notation:
userInfo["username"];
One of these methods is used for polluting the prototype of an object.
━━━━━━━━━━━━━━━━━━
How Prototype Pollution Works
When a property of an object is accessed, the JavaScript engine first looks for it inside the object itself.
•If the property does not exist in the object, JavaScript traverses up the prototype chain to find it in the parent prototype.
To better understand this, open the browser Console and create an object. JavaScript will automatically connect it to one of the built-in prototypes based on its type.
Example:
var name = "Arya";
console.log(name.proto);
Since "Arya" is a string, it inherits all properties from JavaScript's String prototype.
Using dot notation or bracket notation, we can see various inherited properties that were not explicitly defined.
Moreover, we can manually reference an object's prototype using:
a.proto;
Exploiting Prototype Pollution
If an attacker overwrites a property in a prototype that is being used in the frontend or backend of a web application, it can lead to serious security issues.
━━━━━━━━━━━━━━━━━━
Testing for Prototype Pollution
To test for Prototype Pollution, modify the URL as follows and send a request:
1️⃣ Dot Notation Approach
http://target.com/?proto.arya=arya
2️⃣ Bracket Notation Approach
http://target.com/?proto[arya]=arya
Bypassing WAF (Web Application Firewall)
If the WAF blocks the proto keyword, we can use constructor-based techniques:
/?constructor.prototype.arya=arya
/?constructor[prototype][arya]=arya
If the WAF still blocks requests, we can use nested obfuscation techniques:
/?proprototo[arya]=arya
/?proprototo.arya=arya
/?constconstructorructor[protoprototypetype][arya]=arya
/?constconstructorructor.protoprototypetype.arya=arya
Confirming
the Vulnerability
To check if the property was successfully polluted, create an empty object in the browser console and try accessing the polluted property:
let test = {};
console.log(test.arya); // Output: " arya"
If the property value appears, the Prototype Pollution vulnerability exists on the target system.
━━━━━━━━━━━━━━━━━━
Conclusion
Prototype Pollution is a powerful vulnerability that, when combined with other exploits, can lead to serious security risks. Understanding how JavaScript's prototype system works is essential for both attackers and defenders to identify and mitigate such threats effectively.
https://t.me/hacking_vidhya
#CyberSecurity #MSSQL #EthicalHacking
#PrototypePollution
#JavaScriptSecurity
#WebSecurity
#BugBounty
#EthicalHacking
#CyberSecurity
#SecurityResearch
#WebHacking
IMPORTANT WARNING ⚠️
Welcome to hacking vidhya
All the content shared in this channel is strictly for educational and ethical purposes only. The information provided here is intended to help you understand cybersecurity, hacking techniques, and related concepts to improve your knowledge and skills in a legal and ethical manner.
🚫 DO NOT USE THIS INFORMATION FOR ILLEGAL ACTIVITIES.
Any misuse of the content shared here for unauthorized or malicious purposes is strictly prohibited. Engaging in illegal activities is against the law, and you will be solely responsible for your actions.
🔒 Remember:
- This channel is for knowledge-sharing only.
- We do not promote or support any form of illegal hacking, cybercrime, or unethical behavior.
- By using this channel, you agree to use the information responsibly and ethically.
If you choose to misuse this knowledge, we are not responsible for any consequences you may face. Stay ethical, stay safe, and use your skills for good!
hacking vidhya
Empowering knowledge, promoting ethics.
How to Track Anyone’s IP using Transparent Images? — Email, QR Code, PDF, EXE, MS Word, MS Excel, & more..
https://system32.ink/threads/how-to-track-anyones-ip-using-transparent-images-email-qr-code-pdf-exe-ms-word-ms-excel-more.280/
Sensitive Files by Fuzzing Key .git Paths.
`shell
/.git
/.gitkeep
/.git-rewrite
/.gitreview
/.git/HEAD
/.gitconfig
/.git/index
/.git/logs
/.svnignore
/.gitattributes
/.gitmodules
/.svn/entries
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya🔖Find Leaked Credentials Using Google Chrome dev Tools
📱 Github: 🔗 Link
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
🌙 Ramzan Kareem Mubarak! 🌙
Team @hacking_vidhya wishes you all a blessed and joyful Ramzan! May this holy month bring peace, prosperity, and endless blessings to you and your loved ones. Let’s embrace the spirit of kindness, patience, and gratitude as we fast and pray together. May your prayers be answered, your hearts be filled with joy, and your deeds be rewarded. Stay strong, stay blessed, and continue spreading positivity.
Ramzan Mubarak to everyone! 🌟✨
🔑 FindGPPPasswords
A cross-platforms tool to find and decrypt Group Policy Preferences passwords from the SYSVOL share using low-privileged domain accounts.
🚀 Features:
— Only requires a low privileges domain user account.
— Automatically gets the list of all domain controllers from the LDAP.
— Finds all the Group Policy Preferences Passwords present in SYSVOL share on each domain controller.
— Decrypts the passwords and prints them in cleartext.
— Outputs to a Excel file.
🔗 Source:
https://github.com/p0dalirius/FindGPPPasswords
#ad #windows #gpo #credentials
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
WebCopilot An automation tool that enumerate subdomains then filters out xss, sqli, open redirect, lfi, ssrf and rce parameters and then scans for vulnerabilities.
https://github.com/h4r5h1t/webcopilot
Don’t forget the reactions and stars⭐️!
They fuel my energy to post such contents🔋✨.
@hacking_vidhya
