Google CTF 2018 Admin UI 2 That first flag was a dud, but I think using a similar trick to get the full binary file might be needed here. There is a least one password in there somewhere. Maybe reversing this will give you access to the authenticated area, then you can turn up the…
Author: Yılmaz Cemalettin
Router-UI | Google CTF 2018
Google CTF 2018 Router-UI Using the domain found on the hardened aluminum key, you make your way on to the OffHub router. A revolutionary device that simplifies your life. You’re at the UI page, but attempting to brute force the password failed miserably. If we could find an XSS on the page then we could…
Admin UI | Google CTF 2018
Google CTF 2018 Admin UI The command you just found removed the Foobanizer 9000 from the DMZ. While scanning the network, you find a weird device called Tempo-a-matic. According to a Google search it’s a smart home temperature control experience. The management interface looks like a nest of bugs. You also stumble over some gossip…
Floopy 2 | Google CTF 2018
Google CTF 2018 Floppy 2 Looks like you found a way to open the file in the floppy! But that www.com file looks suspicious.. Dive in and take another look? You can find my all CTF solution in here For the first floppy CTF we find the www.com file but we didn’t use that. I…
JS Safe | Google CTF 2018
Google CTF 2018 Floppy Well it’s definitely the 90s. Using what was found in the mysterious .ico file, you extract the driver for the Aluminum-Key Hardware password storage device. Let’s see what it has in store. You can find my all CTF solution in here First I downloaded the attachment.This include HTMl file when I open…
Introduction OpenCV | Learning OpenCV3 C++
This post series is the Solutions of the Learning OpenCV 3 written by Adrian Kaehler & Gary Bradski Chapter 2: Introduction OpenCV For this chapter, I prepare Cmake file to build the example code
Install OpenCV | Learning OpenCV3 C++
This post series is the Solutions of the Learning OpenCV 3 written by Adrian Kaehler & Gary Bradski Chapter 1: Overview In this chapter shows how to install OpenCV in your computer. I use Ubuntu OS, so that I write a shell script for the installing OpenCV you can use it easily.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash sudo apt-get update -y sudo apt-get upgrade -y sudo apt-get install build-essential -y sudo apt-get install cmake -y sudo apt-get install libopenblas-dev -y sudo apt-get install git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev -y sudo apt-get install python-dev python-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-22-dev -y sudo apt-get install libboost-all-dev -y sudo apt-get install libncurses5-dev libncursesw5-dev -y wget https://github.com/opencv/opencv/archive/3.4.0.zip unzip 3.4.0.zip cd opencv-3.4.0 mkdir build cd build cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local .. make -j8 sudo make install sudo apt-get install libboost-all-dev |
Libraries
Writing a Program | C++
This post series is the Solutions of the Programming — Principles and Practice Using C++ (Second Edition) written by Bjarne Stroustrup Chapter 6: Writing a Program Drill