TheCyberHUB · Cyber security · Ethical hacking · Bug hunting
Open in Telegram
Stay updated with TheCyberHUB! 🔥 Get the latest in cybersecurity, hacking tools, and infosec resources. More at: https://www.thecyberhub.org
Show more9 999
Subscribers
No data24 hours
-197 days
-6530 days
Data loading in progress...
Similar Channels
No data
Any problems? Please refresh the page or contact our support manager.
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
March '25
March '25
+8
in 0 channels
February '25
+12
in 0 channels
Get PRO
January '25
+10
in 0 channels
Get PRO
December '24
+9
in 0 channels
Get PRO
November '24
+6
in 0 channels
Get PRO
October '24
+9
in 0 channels
Get PRO
September '24
+14
in 5 channels
Get PRO
August '24
+25
in 5 channels
Get PRO
July '24
+38
in 5 channels
Get PRO
June '24
+15
in 5 channels
Get PRO
May '24
+46
in 1 channels
Get PRO
April '24
+38
in 5 channels
Get PRO
March '24
+37
in 0 channels
Get PRO
February '24
+54
in 5 channels
Get PRO
January '24
+94
in 5 channels
Get PRO
December '23
+90
in 1 channels
Get PRO
November '23
+113
in 5 channels
Get PRO
October '23
+114
in 5 channels
Get PRO
September '23
+111
in 0 channels
Get PRO
August '23
+58
in 0 channels
Get PRO
July '23
+128
in 0 channels
Get PRO
June '23
+264
in 0 channels
Get PRO
May '23
+48
in 0 channels
Get PRO
April '23
+49
in 0 channels
Get PRO
March '23
+62
in 0 channels
Get PRO
February '23
+81
in 0 channels
Get PRO
January '23
+195
in 0 channels
Get PRO
December '22
+57
in 0 channels
Get PRO
November '22
+102
in 0 channels
Get PRO
October '22
+550
in 0 channels
Get PRO
September '22
+161
in 0 channels
Get PRO
August '22
+136
in 0 channels
Get PRO
July '22
+43
in 0 channels
Get PRO
June '22
+62
in 0 channels
Get PRO
May '22
+185
in 0 channels
Get PRO
April '22
+292
in 0 channels
Get PRO
March '22
+295
in 0 channels
Get PRO
February '22
+857
in 0 channels
Get PRO
January '22
+493
in 0 channels
Get PRO
December '21
+50
in 0 channels
Get PRO
November '21
+275
in 0 channels
Get PRO
October '21
+562
in 0 channels
Get PRO
September '21
+1 464
in 0 channels
Get PRO
August '21
+1 645
in 0 channels
Get PRO
July '21
+518
in 0 channels
Get PRO
June '21
+1 205
in 0 channels
Get PRO
May '21
+2 277
in 0 channels
Get PRO
April '21
+2 265
in 0 channels
Get PRO
March '21
+1 659
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 25 March | +1 | |||
| 24 March | 0 | |||
| 23 March | 0 | |||
| 22 March | +1 | |||
| 21 March | +1 | |||
| 20 March | 0 | |||
| 19 March | 0 | |||
| 18 March | 0 | |||
| 17 March | +1 | |||
| 16 March | 0 | |||
| 15 March | 0 | |||
| 14 March | +1 | |||
| 13 March | 0 | |||
| 12 March | 0 | |||
| 11 March | 0 | |||
| 10 March | 0 | |||
| 09 March | +1 | |||
| 08 March | 0 | |||
| 07 March | +1 | |||
| 06 March | 0 | |||
| 05 March | 0 | |||
| 04 March | +1 | |||
| 03 March | 0 | |||
| 02 March | 0 | |||
| 01 March | 0 |
Channel Posts
For a better Job, focus on these things:
- Skills
- Project
- Bug Hunting
- Look for CVEs
- Open Source
- Community
- Networking
- Content Sharing (own)
- if budget, look for better cert (optional)
https://www.thecyberhub.org
| 2 | For a better Job, focus on these things:
- Skills
- Project
- Bug Hunting
- Look for CVEs
- Open Source
- Community
- Networking
- Content Sharing (own)
- if budget, look for better cert (optional)
https//www.thecyberhub.org | 1 |
| 3 | did you checked the latest updates?
https://www.thecyberhub.org
make sure to use desktop/mobile for best experience | 1 442 |
| 4 | https://www.linkedin.com/company/th3cyb3rhub | 1 474 |
| 5 | https://www.linkedin.com/company/th3cyb3rhub/ | 1 |
| 6 | https://www.thecyberhub.org/tools/googledorks | 1 667 |
| 7 | MSFVenom Cheatsheet for Windows Exploitation
https://www.linkedin.com/posts/hackingarticles_msfvenom-cheatsheet-windows-exploitation-ugcPost-7246369362075344896-dU6R?utm_source=share&utm_medium=member_android | 1 522 |
| 8 | Security Engineering at Google: My Interview Study Notes
GitHub Repository: gracenolan/Notes
Explore this repository to learn and prepare for Security Engineering interviews at Google, with detailed notes and insights. | 1 638 |
| 9 | Javascript Vulnerable Code Review - Command Injection
link: https://www.thecyberhub.org/websecurity/code-review/1
const express = require('express');
const app = express();
const port = 3000;
app.get('/api', (req, res) => {
const { command } = req.query;
const exec = require('child_process').exec;
exec(command, (error, stdout, stderr) => {
if (error) {
console.error(error);
return;
}
console.log(stdout);
});
res.send('Command executed');
}
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
See if u can find the vulnerability here. | 1 340 |
| 10 | Javascript Vulnerable Code Review - Command Injection
link: https://www.thecyberhub.org/websecurity/code-review/1
const express = require('express');
const app = express();
const port = 3000;
app.get('/api', (req, res) => {
const { command } = req.query;
const exec = require('child_process').exec;
exec(command, (error, stdout, stderr) => {
if (error) {
console.error(error);
return;
}
console.log(stdout);
});
res.send('Command executed');
}
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
See if u can find the vulnerability here. | 7 |
| 11 | Damn Vulnerabilities List Lab
#AWSGoat : A Damn Vulnerable AWS Infrastructure
https://lnkd.in/dq2cYPG2
#AzureGoat : A Damn Vulnerable Azure Infrastructure
https://lnkd.in/dKMMrESA
#Webpentest: A Damn Vulnerable Web Application
https://lnkd.in/dNJxX-Fe
#API: A Damn Vulnerable Web Sockets
https://lnkd.in/dMbJgP5h
#Mobile: Damn Vulnerable Hybrid Mobile App
https://lnkd.in/dSMZMuzZ
#CICD: Deliberately vulnerable CI/CD environment
https://lnkd.in/dCxZb88q
#GraphQL: Damn Vulnerable GraphQL Application
https://lnkd.in/d5V6P9HA
#Webservice: Damn Vulnerable Web Services
https://lnkd.in/dAu8HAyd
#VamPI: Vulnerable API
https://lnkd.in/dRPpBNjj
#DVSA: Damn Vulnerable Serverless Application
https://lnkd.in/dnvdNcfq
#DVTA: DVTA is a Vulnerable Thick Client Application
https://lnkd.in/dDhEDgdx
#DVJA: Damn Vulnerable Java Application
https://lnkd.in/dqFyjYWP
#DVID: Damn Vulnerable IoT Device
https://lnkd.in/dNV2RjUj
#DVPWA: Damn Vulnerable Python Web Application
https://lnkd.in/diDvsz8u
#DVAS: Damn Vulnerable Application Scanner
https://lnkd.in/dq_aC4pX
#DVB: Damn Vulnerable Bank
https://lnkd.in/dyGWJzxD
#DVWPS: Damn Vulnerable WordPress Site
https://lnkd.in/dkY-tXHe
#DVNA: Damn Vulnerable NodeJS Application
https://lnkd.in/ds3JReM5
#DVRA: Damn Vulnerable Ruby on Rails
https://lnkd.in/djQ_ehzi
#DVGM: Damn Vulnerable Grade Management
https://lnkd.in/dAepn4K7
#Tiredful
https://lnkd.in/d3NjivMu
#DVCSharp: Damn Vulnerable C# Application
https://lnkd.in/d8cZxdnr
#DVHMA: Damn Vulnerable Hybrid Mobile App
https://lnkd.in/dSMZMuzZ
#DVIA: Damn Vulnerable iOS App
https://lnkd.in/dJqPp-d9
#DVIA2: Damn Vulnerable iOS App 2
https://lnkd.in/dhGUXurv
#DVRF: Damn Vulnerable Router Firmware
https://lnkd.in/dUda_XsF
#DVFaaS: Damn Vulnerable Functions as a Service
https://lnkd.in/drVpszwD
#DVCA: Damn Vulnerable Cloud Application
https://lnkd.in/dPyKYKw4
@thecyberw0rld @thecyberworldcommunity
#cybersecurity #infosec #hacking | 1 |
| 12 | Last message from our side on Telegram
We will not be active on Telegram from now
We will continue our community on Discord, YouTube and https://www.thecyberhub.org
ram ram | 25 |
| 13 | if today is possible, will let you know on discord by 8:30PM IST
else we will start from next week sunday, | 1 282 |
| 14 | https://discord.gg/tf9b2zW369?event=1287372423288721438
from next sunday, every sunday | 1 279 |
| 15 | https://discord.gg/tf9b2zW369?event=1287372423288721438 | 1 |
| 16 | https://github.com/thecyberworld/resources | 1 540 |
| 17 | Maybe it's for some | 1 |
| 18 | Is telegram showing ads on our channel? | 1 |
| 19 | ram ram everyone
Internship will start by Sep 13 (Sat)
Internship forms are here
https://www.thecyberhub.org/internship
Note: make sure to check if your link is publicly accessible, first open your resume link in different browser, if it works, then submit, otherwise it will get rejected.
make sure to join discord server
have questions, ask here https://discord.gg/thecyberworld-799183504759324672
Happy Hacking | 2 928 |
| 20 | Hi everyone
Make sure to join our discord server
We will announce everything on discord
And there will be many other events and stuff planned
Join link:
https://discord.gg/thecyberworld-799183504759324672 | 3 352 |
