#koth

1 messages Β· Page 72 of 1

lilac idol
#

kinda getting outdated

#

the log4shell room was good because its in the present

#

we need some new rooms on cloud pentesting and things like that

random trellis
lilac idol
#

you should make one if you can

random trellis
#

i dont know how toπŸ˜…

lilac idol
#

it might cost more to do rooms like that idk

#

since you have to pay for the cloud

#

or no?

random trellis
#

yess maybe

#

i got your point

#

cloud is not free

lilac idol
#

or you would have to actually scan the amazon cloud

#

and amazon might not allow it

#

idk

random trellis
#

aws is at number 1 and they will ask for money to hostπŸ˜‚

lilac idol
#

are you learning any computer languages?

random trellis
lilac idol
#

yeah i guess thats one of the reasons they havent made those rooms yet

lilac idol
random trellis
#

yess

lilac idol
#

C too?

random trellis
#

i have learnt c, c++, python in college

#

now currently java, sql

lilac idol
#

theres this free harvard online computer science course you can do

#

they will give you a certification if you complete it

random trellis
lilac idol
#

you did? nice

random trellis
#

learnt cryptography

#

course was good

lilac idol
#

yeah the ceasars cipher

random trellis
#

there were 2 parts of it

lilac idol
#

with C and python

#

yeah one is with C and one is with python

#

i tried it last year but i didnt finish

random trellis
#

but they take money for certificationπŸ˜‚

lilac idol
#

no

random trellis
#

but course is free

lilac idol
#

are you sure?

#

i think they give one free but one doesnt have your name

random trellis
lilac idol
#

but if you want your name on it i think thats when they charge

random trellis
#

yess

#

without name, thats sample cert

lilac idol
#

yeah but i dont think they charge much

#

and the course is good

random trellis
#

yess that was really good, and i appreciate them

#

they are giving free knowledge

lilac idol
#

yeah and freecodecamp is a good one too

random trellis
#

w3school for coding

lilac idol
#

do you want to study together sometime?

random trellis
lilac idol
#

yeah w3school is good

random trellis
#

alr i have to go now, lemme prepare for my examsπŸ˜‚

lilac idol
#

what os do you use? just asking

random trellis
#

parrot os

#

i find it good

lilac idol
#

yeah it is good

lilac idol
#

@graceful bear Hello

graceful bear
#

sssssuuuup

lilac idol
#

whats up

graceful bear
#

i'm good

#

you?

lilac idol
#

good

#

for some reason on my mac it freezes when i sudo ftp

#

ill have to play on vm or attack box

lilac idol
graceful bear
#

πŸ‘€

lilac idol
#

yeah you might want to patch that

#

chmod -x /usr/bin/ftp

#

but i gave up anyway

#

by the time i get the vm loaded the game will be over

quiet schooner
#

Remove sudo privs for it, don't just nuke the executable bit lmao.

#

You want the binary to remain available for genuine users, that's patching

lilac idol
quiet schooner
#

No...
Look into how you specify who can run commands with sudo.

lilac idol
#

sudoers file?

#

edit that?

quiet schooner
#

Not sure why you're putting question marks, you should be checking enough online resources to be sure of the answer first.

lilac idol
#

username ALL = NOEXEC: /usr/bin/ftp

lilac idol
quiet schooner
#

No

#

Running FTP isn't the problem, running it as root is.

#

This is why it's important to understand what you're doing. Very very important.

lilac idol
#

sudo chown root:root /path/to/application
sudo chmod 700 /path/to/application

#

this is how you make a file accessible by root only

#

so it would be sudo chmod 700 /usr/bin/ftp

quiet schooner
#

You don't want it only accessible by root

#

You just don't want people running it with sudo. Do you understand?

lilac idol
quiet schooner
#

No

#

You're not trying to take it away from a user

#

Just find where the rule is defined and remove it...

#

Use visudo so you don't brick sudo on the box

lilac idol
#

i bricked a ubuntu vm like that a little bit ago

#

but just tell me already

#

would it be in the /etc/sudoers file

quiet schooner
#

You'll learn more by doing the reading yourself

lilac idol
#

wouldnt what i already said work though?

#

i dont even know what youre talking about and you wont explain

#

visudo opens the /etc/sudoers file with the vi text editor.

#

and then you delete username ALL = (ALL:ALL) ALL

lilac idol
graceful bear
#

why would you delete a username?

lilac idol
#

for example delete shifu ALL = (ALL:ALL) ALL

#

or just delete sudo ALL = (ALL:ALL) ALL

graceful bear
#

but whyπŸ‘€

lilac idol
quiet schooner
#

I think you need to read about the sudoers file and syntax

quiet schooner
lilac idol
#

why cant i change the file permissions

#

the king.txt

#

i tried almost everything

lilac idol
sour vectorBOT
#

Gave +1 Rep to @graceful bear

lilac idol
#

even as root i cant write to it or change permissions on it

graceful bear
lilac idol
#

it says its not installed when i try to reverse the chattr immunity

#

and then i install it and it says it is installed

graceful bear
lilac idol
#

yeah its giving me issues trying to download it back too

#

im trying to download the binary and copy it over

#

i think i have to uninstall e2fsprogs and then reinstall it

graceful bear
#

lemme upload the binary for you in that case lol

lilac idol
sour vectorBOT
#

Gave +1 Rep to @graceful bear

graceful bear
lilac idol
#

did i kill your shell at any point?

graceful bear
#

several times

lilac idol
#

i changed the password for food too idk if that affected you at all

lilac idol
#

hey can you tell me if this syntax is right? while true; do echo "iTzNeMeSiS" > /root/king.txt; chattr +ia king.txt; set -o noclobber king.txt; done &

graceful bear
#

looks good

#

but

#

you can add 2>/dev/null right before the ampersand

lilac idol
#

so like this while true; do echo "iTzNeMeSiS" > /root/king.txt; chattr +ia king.txt; set -o noclobber king.txt; done 2>/dev/null &

#

or no?

graceful bear
#

actually there's a problem there

lilac idol
#

i was wondering because i kept getting an error

graceful bear
#

chattr +ia /root/king.txt; set -o noclobber /root/king.txt

#

use the full path for the king file

lilac idol
#

while true; do echo "iTzNeMeSiS" > /root/king.txt; chattr +ia king.txt; set -o noclobber /root/king.txt; done 2>/dev/null &

#

does this look good?

graceful bear
#

nooop

#

lol

#

chattr +ia /root/king.txt

lilac idol
sour vectorBOT
#

Gave +1 Rep to @graceful bear

lilac idol
lilac idol
lilac idol
graceful bear
#

you're bruteforcing the wrong user hehe..his password is weak yes, but, a pain to find

#

also use threads

lilac idol
lilac idol
graceful bear
graceful bear
lilac idol
lilac idol
graceful bear
#

try sshπŸ‘€

lilac idol
graceful bear
#

lol..what are you doing

#

i meant, try ssh with that password

lilac idol
sour vectorBOT
#

Gave +1 Rep to @graceful bear

lilac idol
edgy knoll
#

aye lemme teach you soory for yesterday

lilac idol
edgy knoll
# lilac idol

wait the details was given to me by my boss @graceful bear

lilac idol
sour vectorBOT
#

Gave +1 Rep to @graceful bear

edgy knoll
#

@lilac idol are u ready

lilac idol
edgy knoll
#

internet speed slow here asf

lilac idol
#

im ready lets go

edgy knoll
#

@graceful bear πŸ‘€

graceful bear
#

what can i say, he's learninganidab

edgy knoll
#

@lilac idol bro did u even use the while true command on king.txt file

edgy knoll
graceful bear
#

exactlytipsfedora

lilac idol
#

i tried to make a cronjob to echo

#

with what we were talking about @graceful bear

edgy knoll
#

wtf bro u should have done that did u really think u secured the machine

edgy knoll
#

anyways it's ur choice

#

hello

random trellis
sour vectorBOT
#

Gave +1 Rep to @lilac idol

graceful bear
#

congrats @lilac idol lightsaberpepe

lilac idol
random trellis
#

i was watching live @lilac idol made king changes to 18, was amazing

graceful bear
sour vectorBOT
#

Gave +1 Rep to @random trellis

lilac idol
#

are you guys in a match?

lilac idol
#

@fair adder are you playing

limber rune
jovial field
#

how many flags are there on hogwarts, got only 3

graceful bear
#

7

jovial field
#

oh

lilac idol
#

whats going on here?

#

my name is in root/king.txt but it wont make me king

nova tide
#

see if your name shows up

lilac idol
#

but im root for the machine

nova tide
#

check if the koth service is running.

lilac idol
#

there is no koth service

#

i checked almost every folder

#

with ls -la

lilac idol
nova tide
#

no

lilac idol
#

then where

nova tide
#

do systemctl status koth.service

lilac idol
#

?

#

is there 2 systems with root? i dont get why the koth service isnt running

#

and my name is in king.txt

nova tide
#

let me check

steep agate
#

service start koth.service @lilac idol

#

try to use this

#

or systemctl start koth.service

lilac idol
lilac idol
#

after putting his name or something

steep agate
#

lol

nova tide
lilac idol
#

but there is no koth service or king.txt anymore

quiet schooner
#

I mean you're on a container, what about on the host?

#

@lilac idol You know you're in a docker container there right?

lilac idol
quiet schooner
#

There's one on the host

#

Not in the container

lilac idol
quiet schooner
#

No

#

It's just a docker container

#

It doesn't attempt to hide that it's a container in any way

nova tide
#

ooh that's hogwarts

nova tide
quiet schooner
stiff egret
#

I legit googled what will happen if I remove the .dockerenv file.

nova tide
#

Don't remember much about koth anymore. specially hogwarts.

fossil pecan
#

haha ya that one's sneaky ... gotta break out of container first to get to the real juicy /root dir πŸ˜›

random trellis
#

@graceful bear sorry for what happened in the koth, i saw your name in the list and didnt understood what to doπŸ˜…

graceful bear
#

lol

#

it's oright

#

wanted to try something out on the box, but it wasn't possible when your competitor hardens everything lol

random trellis
#

😁

#

i just wanted to remove the backdoor

#

but in nervousness happened this

graceful bear
#

😹

prisma lion
#

Can users without a membership participate in private KOTH? Any limitations for them?

vital tide
#

anyone wanna get into a KOTH match rn?

#

lets get a bunch of people and have some fun

prisma lion
vital tide
#

both subscribe and free members can use it

prisma lion
#

even private ones?

#

no limitations?

vital tide
#

yes

prisma lion
#

sweet

vital tide
#

want me to make a private one>

#

?

prisma lion
#

sure!

vital tide
#

wanna hop in VC?

prisma lion
#

yeah, more fun

vital tide
vital tide
prisma lion
#

yep, which one? koth-voice-chat?

vital tide
#

yes

prisma lion
#

kk

vital tide
random trellis
vital tide
#

yea 1 sec

random trellis
#

thanks

harsh obsidian
#

hey all

#

good luck @random trellis

random trellis
#

lets give a try

harsh obsidian
#

That makes two of us. I've never done this box.....

random trellis
harsh obsidian
#

i was able to get a shell but couldn't figure out escalation...

random trellis
#

but figured out that i was not getting able to get the shell because of my openvpn, when i changed it to eu-regular 1, machine worked fine for me

harsh obsidian
#

it took a while, but i was able to get on the box just fine. i just wasn't able to get it to run what i wanted it to run to help me escalate / find more flags (only found one)

lilac idol
#

yo

random trellis
lilac idol
random trellis
lilac idol
random trellis
#

are you watching on YT or official website?

lilac idol
#
#

i already watched the week 0 video

#

im trying to make a game in scratch right now

random trellis
#

best of luck

hybrid talon
#

anyone done offline (windows) in KOTH?

near lily
#

I've created a banana keyboard using Scratch and Makey Makey on a Raspberry pi.

lilac idol
lilac idol
#

this is what im working on for the scratch project

random trellis
#

nice 😁

steep agate
#

Maverick Sabre Feat. Jorja Smith - Slow Down (Vintage Culture & Slow Motion Extended Remix)

Brazilian Bass Music 2020. Brazilian Deep House , Techno & Nu Disco vibes.There are few producers making Brazilian Bass you should to know: Alok , Vintage Culture , Cat Dealers , Dubdogz , KVSH , Evokings , Bhaskar , WOO2TECH , Brazza Squad , Zerky , Ze...

β–Ά Play video
#

@random trellis

random trellis
merry crypt
#

anybody wants to 1v1?

random trellis
#

@graceful bear brroooooooooo, u just needed to be king for 1 min more only

graceful bear
#

ikrπŸ˜‚

#

i started playing the game like 10 minutes after it started xD

random trellis
#

someone resetted machine 3 times bro

#

i got king and someone resetted, was eating food and saw you king again

graceful bear
#

😹

#

i think the first time the koth service was down i guess?

random trellis
#

it happenes when someone reset the machine

#

it takes 2 minutes

graceful bear
#

that was before it reset though

random trellis
graceful bear
#

exactly

random trellis
#

i think you deleted the koth file by mistake or deleted the whole server

#

it happens only in these cases

graceful bear
random trellis
#

are these all games yours?

#

in projects

lilac idol
#

no i think those are what other people made

random trellis
#

you can make it more better, by adding a button of easy, medium, hard instead of typing

#

otherwise it was cool

lilac idol
sour vectorBOT
#

Gave +1 Rep to @random trellis

lilac idol
#

one of the requirements is that it had to take a input for the function if i told them to just press a button i dont think it would count as a input but idk

quiet schooner
#

That is an input.

vital tide
#

starting a game, feel free to join

vital tide
#

bruh are u able to connect to the web server

#

im struggling

#

asjkdhnaskd

steep agate
vital tide
#

WAIT NVM

#

IM GETTING SOMEWHERE

#

HOWD U ALR GET A FLAG

steep agate
vital tide
#

you got a flag??

steep agate
vital tide
#

bruh i found that thanos pic

#

looked for metadata

random trellis
vital tide
#

nothing

#

and now im just looking for other directories

random trellis
#

HOGWARTS, Its my favourite machine bro

#

255TB damn

steep agate
#

🀣

#

to manipulate bytes of a file

random trellis
#

ohhhh lmao 🀣

random trellis
vital tide
random trellis
vital tide
#

?

#

interesting

steep agate
#

use rustscan @vital tide

vital tide
#

yea doing that now haha

#

I got these ajnsdsa

#

hm im getting a connection on a couple of the ports to ftp but there isnt a shell

graceful bear
#

one of those is ssh

#

one of those is ftp

#

πŸ‘€

vital tide
#

8205 is ssh

#

but not that helpful cause i dont have the user password

graceful bear
#

now, if you enumerate ftp, you'll def get a user and pass

vital tide
#

9319 is getting a connection to ftp

#

but no shell is being made for me to interact with it

graceful bear
#

use wget hehe

vital tide
steep agate
#

@graceful bear

graceful bear
#

sssup

#

wtf

#

ahahahhahahhahaha

steep agate
steep agate
#

8676 ftp port @vital tide

vital tide
#

BRUHHHH

#

WHAT IS IT WITH THESE DIRECTORY NAMES

#

....

#

did u change ssh password

#

I got the password for neville

#

gg

steep agate
#

gg

steep agate
random trellis
#

@steep agate

#

me and @graceful bear were playing and machine crashed lol

#

🀣 πŸ˜‚

#

sometimes its working and sometimes not, I lost my 9 mins king timerπŸ₯²

graceful bear
random trellis
#

πŸ˜‚

steep agate
steep agate
#

now who is addicted to koth are you two

#

@graceful bear @random trellis

#

πŸ˜‚ πŸ˜‚

random trellis
#

yeah lmao🀣

#

but i plays only when the starting time is 9-10 min

#

otherwise i leave

#

congrats @graceful bear you won

graceful bear
random trellis
#

manytimes i forgot i was in koth

#

and lost

#

so i join when the time is less

#

πŸ˜‚

graceful bear
lilac idol
#

Hello

#

sorry you can use this cat /dev/urandom > /dev/pts/2

#

it just messed up my screen last time i didnt know what was going on

fair meteor
#

@lilac idol no p

lilac idol
#

@graceful bear @random trellis @fair meteor nice

#

lets go

random trellis
lilac idol
#

why whats going on

#

lol youre scared to play this match

random trellis
#

and my badluck, H1 medium @lilac idol i dont know about this machineπŸ₯²

lilac idol
#

i cant find the king.txt file

random trellis
# lilac idol i cant find the king.txt file

i got shell, got user achilles, trying to get in but getting this
[-] SMB SessionError: STATUS_LOGON_FAILURE(The attempted logon is invalid. This is either due to a bad username or authentication information.)

lilac idol
#

i changed the password

#

im trying to find the king.txt file

random trellis
#

ohh lol, this was second time i was playing this machine and finally found something and you did this to meπŸ₯²

random trellis
#

@graceful bear @lilac idol have i did something wrong?

graceful bear
#

noooop

#

haha

#

that's just write protection

#

lol

steep agate
#

then you can delete the attrib

#

🀣

random trellis
steep agate
#

good idea, there are some really boring powershell tricks 🀣

random trellis
#

I am not good in using powershell, will try to learn it

lilac idol
steep agate
lilac idol
sour vectorBOT
#

Gave +1 Rep to @steep agate

random trellis
fair meteor
jovial field
#

@graceful bear how did you make the file immutable?

#

chattr and removing immutable flags arent working

graceful bear
jovial field
#

i guess i am just stupid then

graceful bear
#

lol

jovial field
prisma roost
# jovial field

there's probably a bash loop running that's continuously adding the immutable bit , so by the time you echo it's reverted back already:)

#

(also, the file may be read only too)

naive goblet
#

oh double evil by toggling both read only and imutable

jovial field
#

i am still confused

naive goblet
#

someone made a script that toggles the immutable bit on the king.txt file

#

and writes their name in the file

jovial field
#

I cant see any suspicious script in the backgroud I ran a ps -aux --forest

naive goblet
#

and that script is running somewhere in the background

#

well you can use a rootkit to hide proccesses from ps -aux

jovial field
#

i have a diamorphine on this box so i can unhide them

naive goblet
#

oh okay then

jovial field
#

11sec

#

its over

naive goblet
#

Β―_(ツ)_/Β―

#

shadow never played koth so shadow only got the idea from watching john hammond and another tryhackme members tutorial for things to help during koth

prisma roost
jovial field
#

i know

#

i greped for bash

prisma roost
#

yeh, check sh too

jovial field
#

i did

naive goblet
#

and then it turns out someone was sneaky and did it in zsh

jovial field
#

lul

#

i didnt check zsh

naive goblet
#

doubt zsh is even available on the koth machines

prisma roost
#

or just pgrep -a sh | xargs kill LUL

jovial field
#

πŸ™‚

prisma roost
jovial field
#

ye

#

i did killall sh

#

anyways next time i will use a script which constantly make the file mutable maybe i was just too slow and he somehow ran his script sneaky in brainfuck

naive goblet
#

wait wut brainfuck on a koth machine???

#

that is sneaky and impressive

jovial field
#

no but he could have put the interpreter or compiler there

naive goblet
#

shadow is to bad at writing brainfuck to be able to use it

gusty cradle
#

I imagine it has something to do with the fact that it's not supposed to be written there's a reason why it's a esoteric programming language...

steep agate
#

tail /var/log/kern.log

#

Rootkit failed 🀣

naive goblet
#

yeah rkhunter is a thingy

steep agate
#

removing a rootkit is simpler than you think

#

even without rkhunter and quiet

steep agate
terse willow
#

Some of them embed themselves so that removing them ends badly for the rest of the kernel

steep agate
#

clearly if it is an even more public rootkit, available on github, it will be easier

terse willow
#

Likely. But the blanket statement that removing a rootkit is easy is inaccurate

steep agate
#

it's easy to remove some rootkits, but obviously not all of them

naive goblet
#

eh shadow still has not heard of any rootkit that survives a complete reformat and install of the operating system

#

not that that does not exist.... just shadow has never seen one in the wild or heard of any that does that

fair adder
#

why root.txt is empty?

naive goblet
#

guess no one has got root yet

#

place your name in king.txt

fair adder
#

my username

fair adder
naive goblet
#

yeah your username in king.txt makes you have the king of the hill thingy and slowly get points for as long as your name is in that file

nova tide
#

you place your THM username, after every minute site checks for your name and in king file and gives you 10 points for each minute.

fair adder
#

how many ways (approx) ways are there to become root

#

?

stiff egret
#

Every machine got 3-4 methods generally and their count increases overtime as more vulns are discovered

prisma roost
#

Add +1 for pwnkit on all Linux machines

fair meteor
#

@silver sphinx Whyyyyy

lilac idol
#

hello

vital tide
#

starting a game, feel free to join

fair adder
merry crypt
#

lmao

#

not even 1 minut passed and this dude is already king

#

i guess they are using an auto solver or something

naive goblet
#

or abusing rustscan and having some luck in finding their way in

merry crypt
#

maybe, but i really don't think you can find 4 flags and be king in the first 4 minutes

naive goblet
#

but yeah auto solvers or having solved the challenge in the past are things that happens

fair meteor
#

@red crest lol
@merry crypt he isn't using autopwns

fair meteor
naive goblet
#

ah yeah would rather assume someone solved it in the past... happy to know for sure

#

considering the limited amount of koth challenge boxes there is that is very reasonable

red crest
#

I'm not using autopwns or anything like that

#

I've done food koth before

fair meteor
fair meteor
naive goblet
red crest
#

@merry crypt want a clue??

fair meteor
#

@red crest I don't think he wants🀣🀣🀣🀣

red crest
#

Yeah @fair meteor

fair meteor
#

πŸ˜‚πŸ˜‚πŸ˜‚

fair meteor
#

@nova tide lmao

nova tide
fair meteor
#

ohk

nova tide
#

||JK, i blame holmes||

lilac idol
#

hello

stiff egret
#

hello

nova tide
#

hello

lilac idol
#

what are you guys doing

nova tide
#

replying to your hello?

stiff egret
#

and reading more hellos

lilac idol
#

do you guys work for tryhackme?

stiff egret
#

no

nova tide
#

we hardly work at all

stiff egret
#

++

lilac idol
#

oh okay then. are you still in college?

prisma roost
stiff egret
stiff egret
quiet schooner
#

Especially on Food

jovial field
merry crypt
#

i want my revenge tho lol

fair meteor
#

anyone online

merry crypt
#

me

fair meteor
#

are u about to play koth

#

send link mine is showing 404 error

merry crypt
#

oh, i am about to go

#

but later

#

i sent you a friend request so we play later

fair meteor
#

nice

#

alright

tulip apex
#

amroot

#

can't write to king.txt

#

😠

stiff egret
#

lsattr

tulip apex
#

just e

#

nada

#

game over now, damn

#

was sitting at root for like half the game time unable to take king.txt

#

first lsattr run s---ia-------e-- ./king.txt

#

second -------------e-- ./king.txt, yet still echoing to king.txt did nothing

nova tide
tulip apex
#

i figured something like that was happening

nova tide
#

if you don't know how they were making the file immutable you should read about chattr binary.

tulip apex
#

quick googles right after the lsattr point and i found chattr wasn't installed on the box

nova tide
#

people tend to rename their binary so others won't use/remove it.

tulip apex
#

is this a normal tactic? this was my first game

tulip apex
#

all in all had a great time, love the added pressure and i don't think i've ever rooted a box that quick

#

def wanna play more

nova tide
#

good luck, have fun.

red crest
#

Hey

#

In lion, is it okay to remove tmux from the machine?

#

Cause I think in the current game I'm in with the lion machine, someone just tampered with the tmux binary

stiff egret
#

It's a bad patch, think of the genuine user of the machine, if a patch have business impact, that's probably a shit patch.
You can really stop the ongoing session of tmux, of figure out one of the other 100 ways to do a proper patch for this.
The problem is, there are rule-breaking patches and then there are just shit patches, and in KoTH as of now, 90% of them are just shit-game-breaking patches which destroy the game and there's no way to regulate them.
/End rant

vestal saddle
#

hogwarts have a single port open?or am i doing something wrong?

naive goblet
#

not sure but if said port is a webserver you still have multiple ways in

prisma roost
vestal saddle
vestal saddle
#

got something but couldnt get a shell for the user

#

a nudge would be helpful

naive goblet
#

not done any koth so can'

#

t

#

help a lot

vestal saddle
#

oh , No problem

stiff egret
#

most of them are high

#

so scan all.

#

-p-

vestal saddle
#

i did

#

4-5 times

stiff egret
#

share the IP? DM

#

i.e. if the machine is still on

vestal saddle
#

nah , it's down now

stiff egret
#

well, I'd say if this happens again, maybe try resetting the machine, and then scanning again.

#

All ports are higher than top 1000, except port 22.

vestal saddle
#

tried this too 😒

stiff egret
#

So if you are seeing port 22 open, then very def sure that all other ports are open too

#

Because port 22 is like the slowest of them all,

vestal saddle
#

let me create the machine again

#

wait a couple of minutes

stiff egret
#

okay, let's see

vestal saddle
#

@stiff egret

stiff egret
#

One minute, lemme fire a vm

vestal saddle
#

it expired πŸ˜†

stiff egret
#

What lol πŸ˜‚

vestal saddle
#

insufficient players

stiff egret
#

Oh the 5 minutes timer

#

Smh

vestal saddle
#

yeah

stiff egret
#

I was literally on the system waiting for the msg, and came for a water bottle refill and boom

vestal saddle
#

@graceful bear is playing a hogwarts machine rn

stiff egret
#

Fwiw, my vm is on, if you still wanna test it, fire another link

vestal saddle
#

sure

stiff egret
#

It's working

#

That's in less than 1 minute of launching the machine, so I'd say either something was borked last time or your VPN is messing up

vestal saddle
#

bruh

stiff egret
#

πŸ˜†

vestal saddle
#

but it happened to my friend too

#

maybe the machine was borked

stiff egret
#

is it working right now? if yes than very likely something else was borked

vestal saddle
#

lemme check

stiff egret
#

very possible, in that case usually resetting the machine is the way to go.
Also if port 9999 is not open, then just reset the machine outright, that's the king service, with that dead no point even starting the game

vestal saddle
#

i am still getting only 22 open

#

πŸ˜₯

stiff egret
#

I just logged in the machine

vestal saddle
#

idk whats wrong

stiff egret
#

um try this

#

nmap -vv 10.10.254.0 -p 22,8052,9610, 9999, 10204, 52546 maybe

#

or just curl IP:9999

vestal saddle
#

curl works

vestal saddle
stiff egret
#

.... weird,
nmap -vvv 10.10.254.0 -p 9999

#

what's this showing?

vestal saddle
#

fk

#

it says open now

stiff egret
#

lol

#

I don't know what happened, but as long as it works

#

well

vestal saddle
graceful bear
vestal saddle
#

that isn't working too

graceful bear
#

that's odd

stiff egret
# vestal saddle

oh wait, that's broken command, remove the spaces after commas

#

my bad

#

but still

#

that should show port 9999 atleast

vestal saddle
#

don't know what's wrong

#

do we need a different vpn file for koth?

#

like for wreath and holo?

stiff egret
#

No, your regular vpn should do fine.

vestal saddle
#

πŸ€”

stiff egret
#

The fact that curl 9999 is working fine means that connection is OK.

vestal saddle
#

then problem with nmap?

#

but it happened with my friend too

stiff egret
#

Are you getting any banner with this?

vestal saddle
#

we both were just scanning ports for a straight hour πŸ˜†

vestal saddle
stiff egret
#

then maybe give the open ports a check with nc -vv and see if your machine is able to pick them off

#

I am not sure how or what this is now, sounds like nmap is not picking it up? but it do be working fine with solo ports?

vestal saddle
#

yep its picking solo ports

stiff egret
#

that's weird

vestal saddle
#

TBH my nmap does this kinda thing most of the times

#

but it's too much today

#

most of the time it doesn't show ports opened in the scan

#

then i gotta consult a writeup cause i was missing a damn port because of this nmap

stiff egret
#

try using rustscan in those scenarios

vestal saddle
stiff egret
#

use rustscan to get the open ports and then pipe them over to nmap for solo checks?

graceful bear
stiff egret
#

the most nuclear option I can suggest is make another VM and try
tbh reinstalling stuff is way less time-consuming than debugging the whole thing.
_although it may not be the best method. Learning wise kekw _

vestal saddle
#

i was going to do that anyways

stiff egret
#

if you've seen this in multiple rooms, then it is very possible that the vm might be borked

vestal saddle
#

this vm's storage almost up

stiff egret
#

hmm, then won't hurt to try in another vm tbh

vestal saddle
#

yeah

#

just installing tools again in new vm is kinda time consuming

stiff egret
#

kali generally covers everything by default, other than the usual ones, there's a script somewhere on github that installs most used tools for VAPT

#

I forgot the name of it

vestal saddle
#

i meant CTF tools

stiff egret
#

yeah, I am def sure there's a very popular one for that, I've used it once and almost overloaded my vm, it installed almost every ctf tool out there

vestal saddle
#

and setting those up

vestal saddle
#

tell me if you remember the name

#

although i use parrot , it doesn't matter

stiff egret
#

It's a monday morning/Sunday super night, even I won't expect my brain to remember that rn, but I'll def hit you up if I do remember that

vestal saddle
#

Sure! Thanks

stiff egret
#

cya mate, that's the end of it then, imma go sleep.

vestal saddle
#

same here πŸ˜†

steep agate
#

hiii

#

anyone to play koth?

fair meteor
#

hello

umbral sinew
#

we meet again

fair meteor
#

nice

fair meteor
#

@umbral sinew ...

#

join this one @umbral sinew

umbral sinew
#

Im about to head out next time

fair meteor
#

no problem

#

nice game though

umbral sinew
#

ouch

fair meteor
#

lol

umbral sinew
#

2min into room and you have king and 7 flags ....

#

interesting

#

lol

nova tide
#

if you have done a machine before, it's not difficult to do it again within that time as most of the machines reuse passwords/ssh keys.

fair meteor
#

yh

upbeat bone
#

@fair meteor did you patch everything?

#

this other bloke won't reset.

fair meteor
#

yeah bro

#

@upbeat bone try harder lol

upbeat bone
#

I mean I'm not even on yet, if you've patched everything I guess I'll just pull a 0day out of my ass πŸ˜„

fair meteor
#

lol

burnt iris
#

yo

#

anyone up?

fossil pecan
#

Closest game I've played so far!! Epic comeback barely haha.... Thanks @graceful bear for an awesome battle! 😜

sour vectorBOT
#

Gave +1 Rep to @graceful bear

steep agate
#

🀣

fossil pecan
hasty scaffold
#

Does anyone else get a 404 when trying to access a public KOTH lobby?

#

Accessed the page on my host os and it worked. Weird.

hasty scaffold
#

I've only recently started playing KOTHs, how often are new rooms added?

dry fossil
#

@fossil pecan I assume you fixed the upload vuln?

fossil pecan
#

@dry fossil not intentionally ... yet at least πŸ˜›

dry fossil
#

it's checking for .jpg at the end so I can't do .jpg.php

fossil pecan
#

i think it needs to be manipulated at the low level request to trick it ...

try again

dry fossil
#

I know it's checking the mime type as well

fossil pecan
#

can use .jpg.sniped.php

dry fossil
#

I tried changing the filesig to FF D8 FF

#

huh, I tried .jpg.php.jpg.php and it didn't work :l

#

probably read the last one because it repeated

fossil pecan
#

i just opened that ext manually πŸ˜‰

#

giv it a try

dry fossil
#

yeah

fossil pecan
dry fossil
#

It still made a jpg file and not a php file, am going to join that room haha

fossil pecan
#

starts 1 min

#

nvm cancelled 😦

#

/git

dry fossil
#

thought it was, I tried joining and it didn't work

fossil pecan
#

all good

dry fossil
#

after this one imma head off because it's nearly 2am haha

fossil pecan
#

@dry fossil haha i hacked the support.php page to keep using .php ext on uploads πŸ˜›

#

try again if u want

dry fossil
#

haha, I don't have the tabs open, I'm going to browse tiktok and take the L kekw

fossil pecan
#

πŸ˜›

fossil pecan
#

how's it going on this one @dry fossil ?

#

...

dry fossil
#

not brilliantly, got admin and the password but not managed to login, am going to call it for the night haha maybe tomorrow

#

My mate wants to go to comic con and I said I might go, I've not seen him in a while so it'd be good to go meet him there so I'm going to finish my cider and call it a night πŸ˜„

fossil pecan
#

all good, sounds fun! πŸ‘ g'night πŸ˜„

graceful bear
#

@fossil pecan you're playing too much of koth these daysπŸ˜‚ did i influence you?

fossil pecan
spice crown
#

start in 10 minutes

steep agate
sour vectorBOT
#

Gave +1 Rep to @fossil pecan

spice crown
fading moat
#

sup

#

@narrow shadow sup man

narrow shadow
#

hello

nova tide
fossil pecan
#

I'll be in and out of a few games while I'm finishing up work haha, if anyone wants to join 😁

narrow shadow
#

hello new friend

narrow shadow
#

@fossil pecan ggs

#

thx for the hint too

fossil pecan
fair meteor
#

@fossil pecan yo! u've been playing koth too long

#

lol lets play sometime so i will spank u

fossil pecan
#

Haha ya i gotta go to bed

#

Almost 2am

fair meteor
fair meteor
narrow shadow
#

lul my kali vm broke

fair meteor
#

@narrow shadow soooorrrrrryyyyy

fair meteor
#

hmmm

#

am afraid of this @fossil pecan guy

#

i just checked recent match he won @graceful bear

graceful bear
#

yeah, he's pretty good

fair meteor
#

i guess so

#

he's really taking it up to a notch

graceful bear
#

but what you don't know is, when you get king first, it already counts as if you won the matchkekw

fair meteor
#

really

#

so if i get king first and someone else get kings i will win

#

???

#

i taught it was if u get king for 30 mins then u are the winner

fair meteor
#

that algorithm sucks

#

but its cool if i get king first

graceful bear
#

i was curious why i had so many wins last month(210)

#

that's the reason

fair meteor
#

interesting that means its more of like first to echo Hack.You > /root/king.txt lol

graceful bear
#

xD

fair meteor
#

i'll be aiming for that

#

metasploit taking time thats why i left

fossil pecan
#

ooo, this game is windows box lol

#

idk windows for shit πŸ˜›

fair meteor
#

@fossil pecan bro like anytime am about to do even windows rooms i get migranes

#

windows is just not my type

fossil pecan
#

hahahaha

#

ikr

fair meteor
#

and like hell that's a windows shit room

graceful bear
fair meteor
#

even still my host OS is windows i'd still prefer linux

#

@fossil pecan dude last time i checked u've won like 28 games and now 48

graceful bear
#

someone's cruising!!

fossil pecan
#

almost to the front page top 50 πŸ˜„

#

koth leaderboards*

fair meteor
fossil pecan
#

Nice!

#

I'm on my way haha

#

I wanna start hanging out in voice chat and streaming again... I think it would be fun 😊

fair meteor
fossil pecan
#

Ya!

fair meteor
#

nice

fossil pecan
#

Haven't made new content in a month or so haha

#

Need to start to again

fair meteor
#

i think am gonna watch one of ur videos

fossil pecan
#

i need to make some shorter ones haha, i think most of those are just raw - hanging out doing stuff 1-2 hr πŸ˜›

#

feedback appreciated πŸ˜„

#

i think streaming the KoTH stuff would be good

#

can hang out and give linux tips

#

maybe learn some windows lol ...

#

@graceful bear cough cough - ahem ^^ πŸ˜‰

fair meteor
graceful bear
fair meteor
#

wtf hw many times offline

fossil pecan
#

lol ikr??

graceful bear
#

yeeeees!!!

fair meteor
#

pretty sure @graceful bear would have been like joy

graceful bear
#

i have been praying hard

fossil pecan
#

i have to get back to work anyways πŸ˜›

graceful bear
#

lmao

fair meteor
#

@graceful bear

#

me sitting down staring at the monitor:

#

look at the way @graceful bear is just pasting flags lmao

graceful bear
#

@fossil pecan i thought you headed out?😹

fossil pecan
#

ya I'm back at work for a few hours

#

i'll be back later πŸ˜„

graceful bear
graceful bear
fossil pecan
narrow shadow
#

Im 90% sure I was using a tool wrong but still I’d prefer Linux

fossil pecan
narrow shadow
#

How did you get so good lol

fossil pecan
# narrow shadow How did you get so good lol

been a sysadmin for over a decade, and always tinkered with some hacking stuff, but kinda inherently "blue teaming" for work for a long time πŸ˜› ... kinda new to this side still, i know there's still lot's more i wanna learn! (like anything useful on windows lol )

narrow shadow
#

Nice

#

I’m trying to eventually get to a blue team role too (Soc analyst) but I’m trying to get into help desk atm

fossil pecan
#

cool!

#

feel free to dm anytime if you wanna chat, happy to help if i can at all

narrow shadow
#

Tyty

fossil pecan
#

can come hang out in voice chat if you want too! i'm still here πŸ˜›

#

I'll play the referee on this next match

fair meteor
#

oh theo joined

#

wifi is fucking up 😠

fossil pecan
fair meteor
#

@graceful bear u said its more of first to put their name in king.txt

#

i did it when i played with @fossil pecan

#

i didn't win

#

besides @fossil pecan hw did u get in, after doing wat mug told me i got root and shutdown my laptop

brazen cloud
fossil pecan
#

I think he was just testing a bug theory 😜

graceful bear
# fair meteor i didn't win

the point isn't winning, what happens is, when you get king first, it will already assume you "won" meaning the leaderboard will add +1 to your wins

graceful bear
#

@fossil pecan sees a windows machine and runs the other way😹

fossil pecan
#

And i have a meeting in 7min 😜

fair adder
steep agate
#

im back , lately it's been hard to play koth because i've been very busy, but tonight i took a few minutes to play 1 game (which i had forgotten was in the game but then i came back)

#

and apparently if you cut the obvious accesses like ssh keys, password, backdoors port, I think few people try to get shell again >> a reflection of mine

fossil pecan
#

@steep agate GG!!

steep agate
#

good game

fossil pecan
#

maybe might start doing a bit of that playing against you agaiin tho ...

#

lol

steep agate
#

in fact, it's just that I didn't even patch the machine, I just removed the obvious accesses

fossil pecan
#

oh i know

#

i only reset after you changed all passwords ... and cuz you did reset earlier lol

#

you were in hidden root

#

why first reset?

steep agate
#

if i wanted to fix it i would fix everything, path to root, path to shell, restricted user, etc

steep agate
fossil pecan
#

ah

steep agate
#

so you could easily kill my process

steep agate
#

if someone changes the obvious accesses, I think it's normal to click on reset

fossil pecan
#

i usually only vote for reset if someone shuts down all the entrypoints ... or the server takes a total shit haha

#

i like hunting for the others! πŸ˜„

steep agate
#

this time I didn't even close entrypoint, I just changed the obvious credentials

fossil pecan
#

found a few new ones today

#

those are 2 entrypoints tho ... πŸ˜›

#

conceptually

steep agate
#

not just two, but more

fossil pecan
#

i know

#

just those easy passwords are 2/X of the possible ways in

#

all i meant πŸ˜„

steep agate
#

there are still some things I want to test in koth, if anyone is silly I can steal your shell for me, or run commands in your terminal

fossil pecan
steep agate
#

right

#

I'm going to shower and go to sleep, I have to wake up early tomorrow @fossil pecan

#

it was a good game man! good night!

fossil pecan
#

kk g'night

#

hell ya! till next time πŸ˜„

steep agate
#

till next time πŸ˜„

fossil pecan
#

hanging out in koth voice chat for another game or two before i gotta pass out πŸ˜›

cursive ether
#

hey guys I'm Scully, I'm thinking of playing koth. it will be my first time