HTB Devvortex
by take1312 - Saturday November 25, 2023 at 03:54 PM
#41
(Nov 26, 2023, 04:17 PM)greenSheep12 Wrote:
(Nov 26, 2023, 03:22 PM)SissyGF Wrote:
(Nov 26, 2023, 02:51 PM)TheBeast Wrote: Can someone help me ? i got in as www-data but cannot seem to find a way to get to logan. please help me Sad

Me too Sad  found logan bcrypt password but i'm not able to decrypt.. i'm on the right way?

I got password from this hash which program / mode do you use?

I'm trying with john and hashcat using rockyou wordlist, but both says that somethingh like a week is needed to bruteforce the hash Sad
Have you got some hint?

(Nov 26, 2023, 04:10 PM)NotYourFox Wrote: so, how do you exactly find the bcrypt from www-data?

i've thought of peeking inside mysql, but I could not get access to the database, tried to login as lewis, and it said access denied for user lewis@LocalHost

Credentials are also in this thread, find a way to get into mysql DB from your revshell / cmd exec Smile
Reply
#42
(Nov 26, 2023, 04:19 PM)SissyGF Wrote:
(Nov 26, 2023, 04:10 PM)NotYourFox Wrote: so, how do you exactly find the bcrypt from www-data?

i've thought of peeking inside mysql, but I could not get access to the database, tried to login as lewis, and it said access denied for user lewis@LocalHost

via revshell, i login to mysql with credentials found in a conf file Smile

seems like i did not search well Big Grin
Reply
#43
(Nov 26, 2023, 04:22 PM)SissyGF Wrote:
(Nov 26, 2023, 04:17 PM)greenSheep12 Wrote:
(Nov 26, 2023, 03:22 PM)SissyGF Wrote:
(Nov 26, 2023, 02:51 PM)TheBeast Wrote: Can someone help me ? i got in as www-data but cannot seem to find a way to get to logan. please help me Sad

Me too Sad  found logan bcrypt password but i'm not able to decrypt.. i'm on the right way?

I got password from this hash which program / mode do you use?

I'm trying with john and hashcat using rockyou wordlist, but both says that somethingh like a week is needed to bruteforce the hash Sad
Have you got some hint?

(Nov 26, 2023, 04:10 PM)NotYourFox Wrote: so, how do you exactly find the bcrypt from www-data?

i've thought of peeking inside mysql, but I could not get access to the database, tried to login as lewis, and it said access denied for user lewis@LocalHost

Credentials are also in this thread, find a way to get into mysql DB from your revshell / cmd exec Smile

hashcat and jtr has mode options  (-m) did you use it?

edit:

hashcat has -m option
and
john has --format option
Reply
#44
(Nov 26, 2023, 04:29 PM)greenSheep12 Wrote:
(Nov 26, 2023, 04:22 PM)SissyGF Wrote:
(Nov 26, 2023, 04:17 PM)greenSheep12 Wrote:
(Nov 26, 2023, 03:22 PM)SissyGF Wrote:
(Nov 26, 2023, 02:51 PM)TheBeast Wrote: Can someone help me ? i got in as www-data but cannot seem to find a way to get to logan. please help me Sad

Me too Sad  found logan bcrypt password but i'm not able to decrypt.. i'm on the right way?

I got password from this hash which program / mode do you use?

I'm trying with john and hashcat using rockyou wordlist, but both says that somethingh like a week is needed to bruteforce the hash Sad
Have you got some hint?

(Nov 26, 2023, 04:10 PM)NotYourFox Wrote: so, how do you exactly find the bcrypt from www-data?

i've thought of peeking inside mysql, but I could not get access to the database, tried to login as lewis, and it said access denied for user lewis@LocalHost

Credentials are also in this thread, find a way to get into mysql DB from your revshell / cmd exec Smile

hashcat and jtr has mode options  (-m) did you use it?

edit:

hashcat has -m option
and
john has --format option

Yes, i'm using the following cmd:

hashcat -a 0 -m 3200 hash /usr/share/wordlists/rockyou.txt
john --wordlist=/usr/share/wordlists/rockyou.txt hash --format=bcrypt

I don't figure out if is my machine that sucks or i need to dig more into hash cracking Sad
Reply
#45
(Nov 26, 2023, 04:45 PM)SissyGF Wrote:
(Nov 26, 2023, 04:29 PM)greenSheep12 Wrote:
(Nov 26, 2023, 04:22 PM)SissyGF Wrote:
(Nov 26, 2023, 04:17 PM)greenSheep12 Wrote:
(Nov 26, 2023, 03:22 PM)SissyGF Wrote: Me too Sad  found logan bcrypt password but i'm not able to decrypt.. i'm on the right way?

I got password from this hash which program / mode do you use?

I'm trying with john and hashcat using rockyou wordlist, but both says that somethingh like a week is needed to bruteforce the hash Sad
Have you got some hint?

(Nov 26, 2023, 04:10 PM)NotYourFox Wrote: so, how do you exactly find the bcrypt from www-data?

i've thought of peeking inside mysql, but I could not get access to the database, tried to login as lewis, and it said access denied for user lewis@LocalHost

Credentials are also in this thread, find a way to get into mysql DB from your revshell / cmd exec Smile

hashcat and jtr has mode options  (-m) did you use it?

edit:

hashcat has -m option
and
john has --format option

Yes, i'm using the following cmd:

hashcat -a 0 -m 3200 hash /usr/share/wordlists/rockyou.txt
john --wordlist=/usr/share/wordlists/rockyou.txt hash --format=bcrypt

I don't figure out if is my machine that sucks or i need to dig more into hash cracking Sad

bcrypt takes some time I need to wait around 5-15 mins don't remember.
If you want better hint it's above position 1000 in rockyou.txt
Reply
#46
when
check if you have a space in end of the line (hash)
and hashcat add -w3 -O
when I copy the hash from mysql
there was a space at the end of the hash
that was the reason why I couldn't decipher it

This forum account is currently banned. Ban Length: Permanent (N/A Remaining)
Ban Reason: Scraping | https://breachforums.ai/Forum-Ban-Appeals if you feel this is incorrect.
Reply
#47
Got root. Interesting privilege escalation. Overall had fun

(Nov 26, 2023, 04:59 PM)chappy Wrote: when
check if you have a space in end of the line (hash)
and hashcat add -w3 -O
when I copy the hash from mysql
there was a space at the end of the hash
that was the reason why I couldn't decipher it

I used john. 
Command: john --wordlist=rockyou.txt creds
Reply
#48
Thanks a lot to all <3 finally get the password

I had to reset the machine, the two hashes in the DB changed and everything worked with these) :O
Reply
#49
(Nov 25, 2023, 07:45 PM)take1312 Wrote: idk can´t find templates site to edit to get reverse shell. anyone can share?
page loads so slow its annoying
start http server on the path with your file then upload via url . it workked faster for me
Reply
#50
(Nov 26, 2023, 04:45 PM)SissyGF Wrote:
(Nov 26, 2023, 04:29 PM)greenSheep12 Wrote:
(Nov 26, 2023, 04:22 PM)SissyGF Wrote:
(Nov 26, 2023, 04:17 PM)greenSheep12 Wrote:
(Nov 26, 2023, 03:22 PM)SissyGF Wrote: Me too Sad  found logan bcrypt password but i'm not able to decrypt.. i'm on the right way?

I got password from this hash which program / mode do you use?

I'm trying with john and hashcat using rockyou wordlist, but both says that somethingh like a week is needed to bruteforce the hash Sad
Have you got some hint?

(Nov 26, 2023, 04:10 PM)NotYourFox Wrote: so, how do you exactly find the bcrypt from www-data?

i've thought of peeking inside mysql, but I could not get access to the database, tried to login as lewis, and it said access denied for user lewis@LocalHost

Credentials are also in this thread, find a way to get into mysql DB from your revshell / cmd exec Smile

hashcat and jtr has mode options  (-m) did you use it?

edit:

hashcat has -m option
and
john has --format option

Yes, i'm using the following cmd:

hashcat -a 0 -m 3200 hash /usr/share/wordlists/rockyou.txt
john --wordlist=/usr/share/wordlists/rockyou.txt hash --format=bcrypt

I don't figure out if is my machine that sucks or i need to dig more into hash cracking Sad
 here is the password if you fail to crack it , but know this you are using correct cmds  "tequieromucho"

(Nov 26, 2023, 11:07 PM)spawn Wrote:
(Nov 25, 2023, 07:09 PM)take1312 Wrote: http://dev.devvortex.htb/administrator/

Which SCAN and OPTIONS did you use to find the subdomain?  TIA

ffuf -w /usr/share/SecLists/Discovery/DNS/namelist.txt -H "Host: FUZZ.devvortex.htb" -u http://devvortex.htb/ -mc 200-299

if you dont have ffuf install it
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [FREE] HackTheBox Dante - complete writeup written by Tamarisk Tamarisk 602 92,016 Yesterday, 06:48 PM
Last Post: sabero_exe
  [FREE] CPTS 12 FLAGS pulsebreaker 68 1,998 Yesterday, 09:54 AM
Last Post: VictorPipeau
  [FREE] 300+ Writeups PDF HackTheBox/HTB premium retired Tamarisk 371 93,053 Yesterday, 08:48 AM
Last Post: phannguyenbaouy1
  [FREE] HackTheBox Academy - CBBH CDSA CPTS All Modules Flags Techtom 21 2,642 Yesterday, 05:08 AM
Last Post: popoler
  Hack the box Pro Labs, VIP, VIP+ 1 month free Method RedBlock 23 2,292 Apr 30, 2026, 02:10 PM
Last Post: kkkato

Forum Jump:


 Users browsing this forum: 1 Guest(s)