Giter Site home page Giter Site logo

hts-steganography's Introduction

HTS-Steganography

Hack this site stego solution

Mission level 1

Challenge link here

Mission 1

HINT: This is an encoded message, the only tip you get is '2 null bytes'

solution

Open the picture in a hex editor and search for two null bytes.

hex_editor

converting 16 to binary shows 0 as least significant bit

Binary convertor link here

hex to binary

converting 17 to binary shows 1 as least significant bit

hex to binary

Now replace 16 with 0 and 17 with 1 .As we know that every 8-bit binary digits represent one ASCII character. Therefore, one bit is missing. After some hit and trials, I found that the missing bit is the trailing 0 of the first character. Now, after decoding the binary we get the password.

Binary to ASCII convertor link here

Binary to ascii

binary char
00111000 8
00110011 3
00110111 7
01101000 h
01100001 a
01110011 s
00110110 6

Password = 837has6


Mission level 2

Challenge link here

Download file link here

HINT:did I hear that correctly?

solution

Download the audio file.

Audio file consist of whitenoise.

Use Audacity and view the spectrogram of the audio wave.

you will find the password.

Password = jb298abc9qb2


Mission level 3

Challenge link here

Mission 3

HINT:Look carefully: it's obvious, just not at first sight

solution

Open the photo in Forensically website.

Forensically link here

Check the principal analysis conponent. you will find the password.

Password = n38f298hsjf


Mission level 4

Challenge link here

Mission 4

HINT: I am being hexed!.

solution

Open the picture in a hex editor and scroll down to bottom.

hex_editor

Convert the binary to ascii

Binary to ascii

Password = p68cq1hb


Mission level 5

Challenge link here

Mission 5

HINT:

solution

Password = hgbvZw07


Mission level 6

Challenge link here

Mission 6

HINT:

solution

Extract the strings from the picture Check the strings you will find code that looks like it is encoded in Base64

code=Tm90IGxpa2UgaXQncyBoYXJkIHRvICdkZWNyeXB0JyB0aGlzIGh1aD8gVGhlIHBhc3N3b3JkIGlzIGhnYnZadzA3Lg==

Decode this code with Base64 decoder\

Decoded=Not like it's hard to 'decrypt' this huh? The password is hgbvZw07.

Password = hgbvZw07


Mission level 7

Challenge link here

Mission 7

HINT:

solution

DOwnload and extract the zip file.

It is a .tif extension.

Open the file in photoshop.You will find three layers of the image.

turn off the first layer you will get the password.

Password = 4aH5CEta


Mission level 8

Challenge link here

Mission 8

HINT:

solution

Open the picture in hex editor.

scroll to the middle.

You will find= p��a��s��s��w��o��r��d��=��Y��r��R��o��t��7

Password = YrRot7


Mission level 9

Challenge link here

Download file link here

HINT: kiss me alone

solution

Peform spectrum analysis of the song. You will find long and small dashes in the soundtrack.

Spectrum analyser link here

It is morse code .Taking small dash as a dot(.), large dash as (-), small space as space and large space as (/). On decoding, we get the following Morse code.

".---- ----- --... / ..... -.... / .---- ..--- ----- / ....- ---.. / .---- .---- ----. / ..... ...-- / ----. ---.. / ----. ---.. / .---- .---- --... / .---- .---- ...-- "

Decoding the moorse code we get decimal numbers

morse code decoder link here

107 56 120 48 119 53 98 98 117 113

convert the decimal into ascii you will get password

Decimal to ascii converter link here

Password = k8x0w5bbuq


Mission level 10

Challenge link :- here Mission 10

solution

Stego 10
Look at the picture of the words.
encode it yourself, then decode with version 2.
For every bold letter is a B
and
For every not bold letter is a A

The first one I think looks like BAABB = T.
BAABB = T
AABBB = H
AABAA = E
ABBBB = P
AAAAA = A
BAAAA ……..AND SO ON!

answer = thepasswordisnothere
So just use that and its complete: nothere
Done!


Mission level 12

Challenge link :- here

Mission 12

Solution

This given bitmap has a single row of grey values, with the hint ‘I am the not of a file’. This sounds like the values are the “not” as in, inverse of a file. This python script I wrote will spit out the values of the bitmap:

#!/usr//bin/python
import Image
import sys
im = Image.open(“12.bmp”)
newnumber = 0
oldnumber = 0
counter = 0
width = range(0,123)
hight = range(0,1)
for each2 in hight:
for each1 in width:
it = im.getpixel((each1,each2))
print chr(255-it),
sys.stdout.softspace = 0
print
If you run this you get:

PK???t??8ZJ?Gpass.txt6ae4nt5TBPK????t??8ZJ?G? pass.txtPK???6/
There is something in there… is that a zip file?

$ python decode.py > file
$ file file
file: Zip archive data, at least v2.0 to extract
$ unzip file
Archive: file
extracting: pass.txt
$ cat pass.txt
6ae4nt5TB

So the password is: 6ae4nt5TB

hts-steganography's People

Contributors

wln5t0n avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.