Coder Social home page Coder Social logo

cybersecurityctf's Introduction

[01] General & Forensics Warmups 1

Part 1

# Download a image with link
wget "https://asdfasdfasd"

# Zip a png image
zip flag.zip img.png

# Unzip file
unzip flag.zip

# Show image
eog img.png
[02] General & Forensics Warmups 2
# File does not open
file flag.png // shows is a JPEG

# Rename to JPEG
mv flag.png flag.jpeg

# Save message to file
nano flag.txt // extensions_are_lies

# Use xclip to copy to clipboard
cat flag.txt | xclip -selection clipboard

# How you convert 0x41 from Hexadecimal what would be in ascii
pyton
>>> 0x41
65

# Create an output in python with the result

!/usr/bin/env python 
print "result(%s)" % chr(0x41)

# Make the file executable
chmod +x get_flag.py

# Copy the output to the clipboard
./get_flag.py | xclip -selection clipboard

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.