I legally defaced this website.

  Рет қаралды 456,049

thehackerish

thehackerish

Күн бұрын

#pentesting #ctf #hacking #cybersecurity
00:00 - intro
00:33 - Disclaimer
00:43 - Mapping the website
02:15 - Directory listing
04:03 - Hidden portal
05:42 - Bruteforce
06:04 - More enumeration
06:53 - FTP access
07:12 - SSH hacking
08:22 - Another website
09:16 - Interesting file
10:59 - Read arbitrary files
14:11 - More enumeration
14:52 - Backup file with htpassword hash
15:17 - Cracked the hash
16:19 - File upload
22:50 - Remote Code Execution
24:17 - Privilege escalation
25:25 - Website defaced
DISCLAIMER: The techniques shown here should strictly be used on targets you HAVE permission to test. NEVER hack something you don't have permission to.
In this video, I demonstrate how to hack a CTF target, get root, and deface it in just a few minutes. Web developers will learn a lot on how to secure their websites! Ethical hackers will learn hacking techniques to help their clients become more secure.
Credit: Challenge ch4inrulz: 1.0.1 from @mohammadaskar2
🔥Use Coupon THEHACKERISH and Get 5% discount on CRTP and other courses on www.alteredsecurity.com/ when you pay with Stripe.
🚀 🔥 Become a pentester
academy.thehackerish.com/p/fr...
📙 Learn the technical skills:
thehackerish.com/best-hacking...
📙 Become a successful bug bounty hunter: thehackerish.com/a-bug-bounty...
🆓 Download your FREE Web hacking LAB and starting hacking NOW: thehackerish.com/owasp-top-10...
🌐 Read more on the blog: thehackerish.com
🇩 Discord: / discord
💪🏻 Support this work: thehackerish.com/how-to-support
- Facebook Page: / thehackerish
- Follow us on Twitter: / thehackerish
- Listen on Anchor: anchor.fm/thehackerish
- Listen on Spotify: open.spotify.com/show/4Ht8jEb...
- Listen on Google Podcasts: podcasts.google.com/?feed=aHR...

Пікірлер: 395
@Simone-uu8ne
@Simone-uu8ne 7 ай бұрын
As someone who works in the reliability engineering team of a medium-sized corp, this is literally one of my worst nightmares. People don't realise how easy it is to create vulnerabilities in bigger projects.
@illsmackudown
@illsmackudown 6 ай бұрын
"nightmares" why do dreamers get jobs but i dont
@ForgottenChronicler
@ForgottenChronicler 6 ай бұрын
I'll always remember the story of a group of kids who hacked into Epic Games and stole a TON of data from them because someone at the lower level reused passwords
@Katt--
@Katt-- 5 ай бұрын
​@@illsmackudownwhat?
@JerryRune__
@JerryRune__ 4 ай бұрын
@@Katt--u have nightmares when you sleep and dream so he was saying why do dreamers get jobs
@kiwipomegranate
@kiwipomegranate 4 ай бұрын
@@illsmackudowneveryone dreams?? Anyone can have nightmares? Even if you don’t remember your dreams they are very important for your short and long term memory storage
@Zuzyk
@Zuzyk 7 ай бұрын
Another solution instead of the file api could be to name the file ”0.php%00%.jpeg”. The check might be looking for the filename to end with .jpeg but in some versions of php when php writes the file to disk it looks for the first null character in the filename to know when it’s “done”. That way “0.php%00%.jpeg” becomes “0.php”
@1p2k-223
@1p2k-223 6 ай бұрын
I literally have a page called 0.php as my admin page, but I protect it with both a url parameter and an access code (And modified my directory listing to exclude sensitive files)
@NoahtheEpicGuy
@NoahtheEpicGuy 5 ай бұрын
@@1p2k-223 Simple. Zuzyk hacked you. Good luck... to both of you.
@nothingnothing1799
@nothingnothing1799 5 ай бұрын
​@@1p2k-223good to know, might have to take a look at your website
@Gmarkooo
@Gmarkooo 8 ай бұрын
Ur Channel is underrated. Please dont stop posting, I know your channel will blow up one day.
@thehackerish
@thehackerish 8 ай бұрын
Thanks for the warm comment. Don't hesitate to share it with your fellow buddies
@Gmarkooo
@Gmarkooo 8 ай бұрын
@@thehackerish Will do
@Exotic69420
@Exotic69420 8 ай бұрын
​@@thehackerishgot recommend to me so you're getting recommended
@GunsandGuitars69
@GunsandGuitars69 8 ай бұрын
That's his main goal.
@4louisMC
@4louisMC 7 ай бұрын
@@thehackerishIm not a dev, but this was very interesting! Gread vid!
@CaliberCreativity
@CaliberCreativity 8 ай бұрын
As a Junior offensive cybersec student this was so informational. I loved the methodical method you explained and really liked to watch the whole process. I always struggle to find good methodical aproches from where to start and how to deal with roadblocks when trying to sort things out. Hope to see more of this on your channel
@thehackerish
@thehackerish 8 ай бұрын
Glad it was helpful! There are similar challenges I already solved in the Penetration Testing playlist. Make sure to watch them as well, so many hacking techniques available
@bikdigdaddy
@bikdigdaddy 7 ай бұрын
@@thehackerishthank you so much. i subbed and hoping for awesome content :)
@BillAnt
@BillAnt Ай бұрын
Too many basic oversights here, like leaving an html.bak open including a hash with a simple password like "frank!!!" smh this guy deserves to be hacked. lol
@tbuk8350
@tbuk8350 7 ай бұрын
If you would want to secure that, an API shouldn't take a file as an input, you should store any user-uploaded files with an ID that you store in a database and have the API reference that ID to find the file. That's already the whole "access any file on the system" issue fixed. Then, you should make sure that the API is the only thing that can access those user-uploaded files, and you should make sure the code behind your API treats the data as a string and doesn't execute it. It is also generally good practice to have every admin page locked with a secure, hashed password, and if you want to go above and beyond the server should only take requests from your private key, any incorrectly encrypted requests should be ignored as they didn't come from your key.
@Octopus2480
@Octopus2480 7 ай бұрын
You forgot that you should always keep your system up-to-date, no matter if you only host a website on it or it's your main computer.
@tanza3d
@tanza3d 6 ай бұрын
alternatively you can use an S3/R2 storage for files instead which worst case allows attackers to view all the files on the storage
@Cornell_
@Cornell_ 8 ай бұрын
As someone who's currently developping a pretty big web app these videos always scare the shit outta me man ! I am pretty confident that I'm able to produce "safe" code but, the fear's always present. Love the content tho
@thehackerish
@thehackerish 8 ай бұрын
It always helps inviting ethical hackers to be sure. If your company can make it happen, request a pentest
@txic.4818
@txic.4818 8 ай бұрын
invite bug bounties ^^
@LaughWithLevi
@LaughWithLevi 4 ай бұрын
Can’t wait to use this knowledge for “protecting my website”
@juanplayz1296
@juanplayz1296 7 күн бұрын
lol
@gametalk3149
@gametalk3149 2 күн бұрын
@@juanplayz1296lol
@qwoolrat
@qwoolrat 7 ай бұрын
to think all of this can be mostly protected by ratelimiting the user and not letting them send thousands of requests in a few minutes
@kipchickensout
@kipchickensout 6 ай бұрын
It's so nice to watch, especially when I know most of the stuff you used or did, but would've never thought about using it :)
@TechAmbition
@TechAmbition 7 ай бұрын
Man this was straight Information, No Stupid Intro, No Freaking, Direct Knowledge❤
@larry1851
@larry1851 8 ай бұрын
The File API should have been configured to only give access to specific folders. For the upload API you could search for code symbols etc. Also a cooldown for login attempts would slow down such bruteforce attacks. But this was a very good and informational video. Also a follow up video where you would go into detail on how to prevent such exploitation would be great.
@papatumhare5947
@papatumhare5947 2 ай бұрын
What i understand is this is not simple you have lots of knowledge and better understanding what are you doing with files and how you read error increadible salute sir❤
@yima7
@yima7 8 ай бұрын
i started studying cyber sec a couple months ago and your channel is a gem, really keeps me motivated as a see the things i'm learning being applied and it helps a lot with piecing together an image. Thanks a lot for sharing this :)
@thehackerish
@thehackerish 8 ай бұрын
Great to hear! Thanks for your lovely comment. Best of luck in your career
@Just_CocoGaming
@Just_CocoGaming 7 ай бұрын
Where you doing this at homie ive been wanting to get into it
@thehackerish
@thehackerish 7 ай бұрын
There are many online labs I explained in previous videos. Look for root-me, tryhackme, hackthebox, hacker101 and ctfchallenge.com
@azimulhasan4391
@azimulhasan4391 8 ай бұрын
amazing content , gives a lot of insights on exactly whats going on in the websites
@scary34
@scary34 8 ай бұрын
Your channel is so underrated , LOVE IT
@thehackerish
@thehackerish 8 ай бұрын
Thank you so much!! Share and spread love ❤
@mx338
@mx338 7 ай бұрын
Especially of you're a developer, you should just use static site generation or write a HTML site from scratch, for a simple site like this. Static HTML allows for no attack surface and even a default config web server on an up to date, reasonably secured Linux system, should provide practically no attack surface.
@gayusschwulius8490
@gayusschwulius8490 4 ай бұрын
Static HTML (with CSS, obviously) should be the default for all websites anyway. Non-exploitable, small file sizes, no spying on users, accessible from all browsers and devices. PHP should be used only where it adds to functionality; JS should be used even more sparingly only where strictly unavoidable for a certain functionality (and it should always be possible to use all non-JS-dependent features of a site even without it installed). In web development, less is more.
@mrobvious6112
@mrobvious6112 8 ай бұрын
Haha, it is like some real world CTF I use to do, and some steps where similar... man, this kind of stuff is what I like to watch so I can memorize it again, and not forget about it.
@thehackerish
@thehackerish 8 ай бұрын
Enjoy! And many other similar ones are already in here for you to learn and remember
@cyberdevil657
@cyberdevil657 11 күн бұрын
Very underrated channel!! You got my sub
@Rudxain
@Rudxain 6 ай бұрын
I learned a lot from this video! However, at 17:08 I knew what you were gonna try. Appending "garbage" data to a JPEG or PNG is "the oldest trick in the book". In rare cases, we can trick the server into stripping the header, allowing us to upload arbitrary files without extra data
@KangJangkrik
@KangJangkrik 7 ай бұрын
"Be a developer first, before being a hacker" - my mentor
@DJTimeLock
@DJTimeLock 7 ай бұрын
The best hackers are the best developers too. It takes understanding what you write to identify possible security issues.
@ffafafaf
@ffafafaf 3 ай бұрын
also think like a hacker when programming sensitive stuff
@vlogsprasenjit
@vlogsprasenjit 8 ай бұрын
Thank you for this video! Loved it
@thehackerish
@thehackerish 8 ай бұрын
Glad you enjoyed it! Share it in your network
@Swampert_Tube
@Swampert_Tube 6 ай бұрын
Great video! I just graduated college with degree in cyber security recently and just found your channel. You gained a sub
@thehackerish
@thehackerish 6 ай бұрын
Awesome! Thank you!
@mohmino4532
@mohmino4532 7 ай бұрын
it was amazing sir keep going ❤
@It_is_adrenalin
@It_is_adrenalin 7 ай бұрын
well, underrated AF, keep it going man! Apreciating your content
@thehackerish
@thehackerish 7 ай бұрын
Thanks, will do!
@Tudify
@Tudify 4 ай бұрын
Some of that webpage was in HTML3, as the tag was used: and that sites files were REALLY insecure
@Sonanokaaa
@Sonanokaaa 5 ай бұрын
I know nothing about hacking but these videis are very interesting to me, you guys are very intelligent, my brain gets very confused watching it but It's still very fun to watch it 😂
@willhearn9191
@willhearn9191 8 ай бұрын
You had access to an anonymous FTP server. I believe you could have uploaded a PHP backdoor and used the LFI to include the script.
@thehackerish
@thehackerish 8 ай бұрын
Sure! Provided you have the rights to do it
@Username8281
@Username8281 8 ай бұрын
Amazing video. Good stuff!
@thehackerish
@thehackerish 8 ай бұрын
Much appreciated!
@Prashanth-fg5dc
@Prashanth-fg5dc 7 ай бұрын
This is so nice that i immediately Subbed to you :)
@no_1p
@no_1p 8 ай бұрын
Dude , you're amazing !!
@XdGoldenTigerYT
@XdGoldenTigerYT 6 ай бұрын
Yeah, never used Apache. I use nginx, and have my websites in folders that are not in the nginx folder. I also dont use SSH or FTP servers. My nginx is running on Windows, so it is easy for me to access the files remotely without needing third party software. I used to create websites in PHP, But moved over to JS/TS frameworks like Angular and NextJS.
@QWERTYQwertz852
@QWERTYQwertz852 7 ай бұрын
Really good Video and nice channel!
@abdessalam8468
@abdessalam8468 8 ай бұрын
We missed you bro
@sebastianramadan7863
@sebastianramadan7863 7 ай бұрын
Each additional service increases the surface area, particularly if it leaks version info. There may also be version info in the HTML code. I think there's also a step where franks password may have worked on ftp, so maybe you got the directory structure without bruteforce...
@wrathofainz
@wrathofainz 6 ай бұрын
I remember my first hack. I used blind sql injection and got the login details of admin and used it to replace images on the site with memes. Good times.
@Tchatarero36
@Tchatarero36 8 ай бұрын
Great Content ...
@37j.
@37j. 5 ай бұрын
I have never seen anyone defacing a web page in details like this before .❤❤
@RawCuriosity
@RawCuriosity 6 ай бұрын
This was incredibly useful for studying for the Pentest+
@thehackerish
@thehackerish 6 ай бұрын
Glad it was helpful!
@rbt-0007
@rbt-0007 7 ай бұрын
Your strategies are quite insightful, no cap. I would always scan the ports first, and if it’s a website, I would do file/directory/subdomain enumeration immediately
@SnoppleWopple
@SnoppleWopple 7 ай бұрын
Schlawg said no cap 😭😭😭
@lukazashovski
@lukazashovski 7 ай бұрын
schlawg thinks hes the bill collector@@SnoppleWopple
@binglething
@binglething Ай бұрын
Anyone in these replies like skibidi toilet
@dannytutor6383
@dannytutor6383 8 ай бұрын
I believe since you already discovered an LFI vulnerability you can upload a file that can allow you to run system commands or upload your deface page and rename it to index.html Without exploiting the OS.🤔
@thehackerish
@thehackerish 8 ай бұрын
Uploading a file requires some kind of logs pollution I guess. But that's an interesting idea. I will use it in my upcoming video on another use case. Stay tuned
@varmony6984
@varmony6984 7 ай бұрын
That was just insane !
@dynamohack
@dynamohack 8 ай бұрын
thanks to you now i can prevent attackers
@septcoco
@septcoco 7 ай бұрын
Instructions unclear, I somehow hacked NASA's website and got life sentence.
@theorangeoof926
@theorangeoof926 4 ай бұрын
*pastes flat earth conspiracy stuff for extra deviousness on april fools*
@EnifOfficial
@EnifOfficial 7 ай бұрын
aight. this gotta go to watch later because i need to watch full verison of this when i got itme
@TypicalNerds
@TypicalNerds 7 ай бұрын
If chromebooks weren't so largely restrictive, I would have absolutely taken this opportunity when I was in high-school as the chromebooks they provided were unstable, and unusable after they locked them down excessively. Unfortunately the only way around the issues was to bring in a personal laptop instead.
@stoneman210
@stoneman210 5 күн бұрын
I just shimbooted mine lol
@parkerzanta
@parkerzanta 6 ай бұрын
I really liked this video!
@itsyoyrboiawaawa7305
@itsyoyrboiawaawa7305 Ай бұрын
This is a wonderful way to learn how to be a pentester I just wanna know how you install the Ctf/Chainz I'm getting confused, if you could explain what and how to do these stuff more specifically I would really appreciate it.🙏🙌
@ytg6663
@ytg6663 8 ай бұрын
Sir please start an manual exploit development series Based on Real world exploits Like EternalBlue, SMBGhost, Discovering bugs in new SAMBA//Apache versions
@flooooooooooooooooo
@flooooooooooooooooo 6 ай бұрын
That was so awesome i am going to try some of these recipes on my RESTful API
@thehackerish
@thehackerish 6 ай бұрын
Have fun!
@maxhogan6504
@maxhogan6504 Күн бұрын
I just made a portfolio with this template and the thumbnail had be scared a second
@MarshyMcOfficial
@MarshyMcOfficial Күн бұрын
tip: if you're using a web hosting service, make a backup on there and a physical one. same for a server that you personally host
@letruxux
@letruxux 7 ай бұрын
I have little to no knowledge about this but I enjoyed this video! keep up
@thehackerish
@thehackerish 7 ай бұрын
Glad you enjoyed it!
@xizt5973
@xizt5973 8 ай бұрын
This reminds me of webservers security in 2006 🤣
@desmondevelops
@desmondevelops 4 ай бұрын
idk what youre doin but its entertaining
@deveren
@deveren 7 ай бұрын
Cool stuff dude
@thehackerish
@thehackerish 7 ай бұрын
Thanks!
@zeekjones1
@zeekjones1 6 ай бұрын
The best way to keep things secure is to have your password list and your user lists both offline, and split into separate file locations. If you only ever are going to need them very occasionally, the extra steps of having to reference both halves wouldn't be too bad. An extra step is having a list of fake data, that looks real, but is actually a cypher for the real data.
@feedyjk7573
@feedyjk7573 7 ай бұрын
loved how you used malay for the click here button
@arandomguy9474
@arandomguy9474 7 ай бұрын
really loved it, thanks for such amazing content
@thehackerish
@thehackerish 7 ай бұрын
My pleasure, Glad you enjoyed it!
@Wild_LifeWith_Animals
@Wild_LifeWith_Animals Ай бұрын
And Wallah i learn something new ❤️
@GeneralPurposeVehicl
@GeneralPurposeVehicl 5 ай бұрын
In a few days I am anout to reactivate my server. The timing of finding this was perfect.
@abdelbakiberkati
@abdelbakiberkati Ай бұрын
- i got remote code execution on the server ! - i should use it to learn more about the server ! Said no hacker ever
@user-fm7uq4fb3f
@user-fm7uq4fb3f 7 ай бұрын
You could've saved yourself a bit of brute forcing to find the upload dir by using the LFI to read the upload script. In general, I use any LFI I have to grab as much Backend code as I can to get a better understanding for what's happening behind the scenes, can highly recommend it
@thehackerish
@thehackerish 7 ай бұрын
Definitely
@xt355
@xt355 7 ай бұрын
can you explain how you would've done that? thanks a lot
@user-fm7uq4fb3f
@user-fm7uq4fb3f 7 ай бұрын
@@xt355 the LFI that was used to read /etc/passwd and the contents of some other files can also read and output the php files. You would just have to point it at those files and it spits the code with all the important info out
@marsovac
@marsovac 3 ай бұрын
You realize that he was not hacking a real website, but he made this one as a scenario for a youtube video? Frank with email as nobody and some stock text as data gives hints, also a pasword hash inside a a .bak file? What's the purpose of a hash of "frank!!!" when you cannot use it in any way when hashed. That part made no sense. Anyway if he did what you ask he would skip half of the video.
@vagabund6778
@vagabund6778 Ай бұрын
Most of these vulnerabilities are disabled by default in apache, like directory traversal and directory listing. Anyways good job
@sudomode_
@sudomode_ 8 ай бұрын
Beautiful walkthrough , just a question , why the server has executed phpinfo while the file extension was still jpeg and the content type was also image/jpeg ?
@thehackerish
@thehackerish 8 ай бұрын
Great question, it's because I loaded the jpeg using the lfi, where the content type is text/html and the php code is evaluated
@sudomode_
@sudomode_ 8 ай бұрын
@@thehackerish That is amazing I didn't know about that , thank you so much for your reply and keep making awesome content 🥰
@SaidAlwi1
@SaidAlwi1 5 ай бұрын
This is good for a cybersec. I will do like that on future..
@RawShogun
@RawShogun 3 ай бұрын
As someone who doesn’t know sh*t about cybersecurity this was fascinating! Edit: I got into a companies admin dashboard; which contained the link to their code in Git hub. What now?
@shrek1435
@shrek1435 3 ай бұрын
so much to learn
@user-du5qg4dx2z
@user-du5qg4dx2z 3 ай бұрын
Oh my god This going over my head But informative 🎉
@TheCatstronaut
@TheCatstronaut 6 ай бұрын
as someone who lives in colorado, i can confirm that.. DO NOT TRUST THE WEATHER PREDICTIONS! colorado is cool until they say its winter tomorrow but then its actually summer
@NicoPlyley
@NicoPlyley 7 ай бұрын
Great video! But I'm wondering why not use the file return to return the upload.php file that the uploader was posting to and get the path that way?
@thehackerish
@thehackerish 7 ай бұрын
That's a great idea indeed!
@sayedammanakhtar1225
@sayedammanakhtar1225 7 ай бұрын
Please Make more Video Like this
@JustAPersonWhoComments
@JustAPersonWhoComments 7 ай бұрын
Plot twist: The developer watched this video and defaced their own website to test the hacker's skills
@webjohn
@webjohn 7 ай бұрын
I feel like that example just screamed "Set-up" on every detail. Putting the basic auth inside an html comment.. creating a "file uploader" and a "file api" with basic html/no css. I would love to see a more mature setup, for example a vServer with basic hardening with Laravel running. This site just looked like it was made as his first website ever.
@KennyWlr
@KennyWlr 7 ай бұрын
Yeah, it's just a regular rootme with cute hints like "I like PATTERNS" and whatnot and standard CTF set-ups. A lot of the steps of regular hacking are mostly the same - enumerating, checking for outdated versions, looking for suspicious comments someone left from development, open directory listings, backup files/version control files, any indications of security misconfigurations, etc. Things are just slower and less "convenient" in real pentests. It would definitely be fun to see real security audit videos, but they would be boring for a majority of the viewers on youtube since, let's face it, 95% of the paths we pursue in cybersecurity lead to dead-endst, and a lot of times the real-life vulnerability combinations are a lot more difficult to comprehend than simple CTF challenges like this. Dunno if there's a good channel that does actual cyber-security audits on youtube, there are definitely a lot of them that cover reported vulnerabilities. Reading disclosed hackerone vulnerabilities is one of the best fun to read sources, imho.
@fatayy
@fatayy 7 ай бұрын
great vid really interesting, I was trying to guess ur accent is it Lithuanian?
@thehackerish
@thehackerish 7 ай бұрын
No, but you don't have to guess. Some of my videos reveal it exactly 💯 😉
@JohnDoeSec
@JohnDoeSec 6 ай бұрын
Sheeesh, look at this guy go🥰
@meltymooncakes
@meltymooncakes 6 ай бұрын
so what you're telling me is i should always have an ftp server with just an image of a troll face in it
@user-gf3tb5qs6s
@user-gf3tb5qs6s 7 ай бұрын
One's real value first lies in to what degree and what sense he set himself.
@Dokattak
@Dokattak 8 ай бұрын
If I ever make a website, I will use this as a reference. I’ll also make unpredictable file names.
@Demopans5990
@Demopans5990 7 ай бұрын
Or use static pages with nothing fancy. As for other vectors, you could do something funny and assign SSH to port 1 or something
@Galactipod
@Galactipod 7 ай бұрын
"I'll also make unpredictable file names." Obscurity is not security. It'll just take the hackers a couple more seconds to get to them.
@Dokattak
@Dokattak 7 ай бұрын
@@Galactipod I never said it was security.
@PronunciationPam-ho3bu
@PronunciationPam-ho3bu 7 ай бұрын
Name one "ijustthrew8saplingsintosulfuricacid.jpeg"
@furr_63
@furr_63 7 ай бұрын
"Unpredictable file names" Paswood/Ass/basicbee
@m4rt_
@m4rt_ 4 күн бұрын
My website has no vulnerabilities, it's just HTML and a little CSS. Though there may be some on the server side (the stuff hosting the HTML and CSS files), but I'm just using something similar to GitHub pages, so I don't really have to worry about that stuff.
@sakshamsharma9763
@sakshamsharma9763 7 ай бұрын
wow thats the thing am searching from years i love your content plz tell me how can i learn all these things plzz
@thehackerish
@thehackerish 7 ай бұрын
I talk about various resources here kzfaq.info/get/bejne/n8B8opuIztXTeY0.html
@sakshamsharma9763
@sakshamsharma9763 7 ай бұрын
@@thehackerish thanks !
@iamzayed
@iamzayed 4 ай бұрын
Amazing.
@fredianriko5648
@fredianriko5648 7 ай бұрын
Great video, could you please make a video on hacking a website with latest stack? Such as the app using react js and deployed on google kubernetes engine? Or just maybe a google compute engine (vm)
@thehackerish
@thehackerish 7 ай бұрын
I will see what I can find
@fredianriko5648
@fredianriko5648 7 ай бұрын
@@thehackerish cool, thank you sir
@gorlix
@gorlix 7 ай бұрын
what a nice video, thanks
@thehackerish
@thehackerish 7 ай бұрын
So nice of you, thanks for the feedback!
@COALROCK8642
@COALROCK8642 7 ай бұрын
In first 5 mins is more like tinkering with stuff to realise this 'victim' did not forget to change passwords and search in documentation to, practice back-door access. I'm not in cyber much. But things are closed loop now and all you need to do is just disable back door access or someone is trying to penetrate you.
@thehackerish
@thehackerish 7 ай бұрын
If by closed loop you mean logging and monitoring, I would say not many have implemented them. And some of those who did don't have detection rules in place, and some of those who have detections are just buried in false positives and don't act timely
@COALROCK8642
@COALROCK8642 7 ай бұрын
I have my theory. There are 4 classes of defense and offense; Class D Defense and offense, more for end-non-educated users. Just have practises like passwords and disabling strange access. Class C, You know some coding or a brute force of 24hours is enough to crack. Or do hash-pass. Class B, Where I expect top professionals, Knowing internal compenents and only a internal memeber of code can save or attack. Class A, Impossible to hack and Top class defense. Penetrating a Class A setup only means onething, either your are internal memeber or you are the first suspects for breach in security@@thehackerish This classification is not on basis of deployment but on basis of process, actions, steps to perform. Know such classes will downsize your first suspects and candidates for testing with trust, or betrayal-detection to earliest.
@mofassil_noor_alif
@mofassil_noor_alif 7 ай бұрын
Wow !!! What is this video !! What have i found ! I have to thank the shitty algorithm of KZfaq this time ❤️ Keep going bro ❤️ you'll shine like the brightest star ❤️
@thehackerish
@thehackerish 7 ай бұрын
Thanks for the warm feedback 😀
@genericplayr
@genericplayr 8 ай бұрын
Wow! SUPER LE CONTENU
@thehackerish
@thehackerish 8 ай бұрын
Merci bien, partage mon ami
@rodricbr
@rodricbr 6 ай бұрын
frank should reconsider learning the basics of web development
@maxrandom569
@maxrandom569 6 ай бұрын
your could read the sshd config using the file reader exploit and gain the ssh password.
@weirdo9958
@weirdo9958 4 ай бұрын
Nice video, but for some reason I can't set up and use wfuzz in my pc(windows), what do I have to do?
@questieee
@questieee 6 ай бұрын
You can also deface any other website you want, you just need to own it
@explodinghammeronthe17thof36
@explodinghammeronthe17thof36 6 ай бұрын
"You can rob any house you want, you just need to own it"
@kosmisch1137
@kosmisch1137 3 ай бұрын
Nice video! What tools are you using?
@KaizenGpo
@KaizenGpo Ай бұрын
practically everything on linux if you watch you can see
@ianthehunter3532
@ianthehunter3532 7 ай бұрын
what's the template called
@cfwproductions
@cfwproductions 7 ай бұрын
As someone who does not have cybersecurity knowledge, what would the best forms of protecting your website be? Such as from brute force and by other means.
@thehackerish
@thehackerish 7 ай бұрын
I would say apply recommendations of the owasp top 10. The golden rule would be to never trust user input
@cfwproductions
@cfwproductions 7 ай бұрын
@@thehackerish thank you! I am looking into it and will implement it!
@arcade7651
@arcade7651 7 ай бұрын
I ask this about every time but it is interesting to me what is your nmapf alias full command?
@thehackerish
@thehackerish 7 ай бұрын
Sure, thanks for asking nmap -p- --open -sV -oA scan target
@pajeetsingh
@pajeetsingh 3 ай бұрын
Where is that development protection coming from? Apache? Php? Custom auth?
@nintendero65
@nintendero65 7 ай бұрын
Im scared and im turning off my webserver asap!!
@phoneywheeze9959
@phoneywheeze9959 6 ай бұрын
can you do something similar for a website built with javascript framework (for example sveltekit)? i think a lot of the problems here come from php and apache server. Of course, there would be several exploits in the javascript version as well, but I want to see the extent of those vulnerabilities.
@thehackerish
@thehackerish 6 ай бұрын
Yeah sure, I will look for something along those lines
@davidpaley2865
@davidpaley2865 7 ай бұрын
how do u hack the website if it’s made with all modern tools like react, webpack and hosted as a docker container on aws with correct configuration, which aws provides by default, i.e correct vpcs, security groups and so on?
@thehackerish
@thehackerish 7 ай бұрын
From a nework perspective, you'd still need to open the web port. And if we suppose the backend is still in PHP with the same code base, just separated from the react front, I would still read files. From there, the exploitation might differ. I might try container escape, but that depends on the config. Or, I can try gaining access to aws tokens, not sure if they are accessible in the metadata like EC2s. I might also list the env vars which might disclose internal info, maybe secrets? Then pivoting and it becomes a test of the cloud infra.
@KoleckOLP
@KoleckOLP 6 ай бұрын
how did you get into the shell of the server, you glossed over that, I assume you used the ssh, but where did you get the credentials for the ssh?
@thehackerish
@thehackerish 5 ай бұрын
It's a reverse shell.
@Marshall...
@Marshall... 7 ай бұрын
00:14 🚀 The video aims to demonstrate how hackers find vulnerabilities in websites and exploit them. 00:40 🕸 Hackers generally start by using the website normally, exploring every link, page, and feature. 02:31 ⚠ Directory listing should be disabled to prevent unauthorized access to files. 03:42 🛠 The video covers brute-force attacks to find hidden folders and features. 06:27 🔍 Port scanning is another method used to find potential weak points in the server. 11:06 📂 The video demonstrates a Local File Inclusion (LFI) vulnerability. 14:48 🤦‍♂ Developers should not leave backup files or comments that reveal sensitive information. 17:20 📤 File upload features should be properly coded to prevent abuse. 22:06 🎯 Exploiting vulnerabilities can lead to remote code execution on the server. 24:06 🛡 Keeping server and software up-to-date is crucial for security. 25:38 😱 The video concludes by showing how easy it is to deface a website if vulnerabilities are not addressed.
Using My Python Skills To Punish Credit Card Scammers
7:13
Engineer Man
Рет қаралды 4,8 МЛН
Stealing Storage from Discord
7:39
Dev Detour
Рет қаралды 1,5 МЛН
Кәріс тіріма өзі ?  | Synyptas 3 | 8 серия
24:47
kak budto
Рет қаралды 1,6 МЛН
ChatGPT’s Amazing New Model Feels Human (and it's Free)
25:02
Matt Wolfe
Рет қаралды 151 М.
How to hack Wi-Fi networks ( Educational )
5:37
Kian Brose
Рет қаралды 2,4 МЛН
OSCP: From FAIL to FULL points - My Top 20 Tips
25:47
Mike Gropp
Рет қаралды 6 М.
NEW GPT-4o: My Mind is Blown.
6:28
Joshua Chang
Рет қаралды 230 М.
Is this the best OSINT tool out there?!
17:10
stuffy24
Рет қаралды 290 М.
OpenAI’s GPT-4o: The Best AI Is Now Free!
9:14
Two Minute Papers
Рет қаралды 163 М.
INSANE OpenAI News: GPT-4o and your own AI partner
28:48
AI Search
Рет қаралды 159 М.
Hacking a weird TV censoring device
20:59
Ben Eater
Рет қаралды 2,9 МЛН
Learn Reverse Engineering (for hacking games)
7:26
cazz
Рет қаралды 942 М.
Malware development 101: Creating your first ever MALWARE
28:00
Leet Cipher
Рет қаралды 165 М.
Кәріс тіріма өзі ?  | Synyptas 3 | 8 серия
24:47
kak budto
Рет қаралды 1,6 МЛН