Tech Tips

  1. Uncategorized
  2. 90 view

[memo]granpark.rb security meetup

Contents

exploit

exploit : invalid input
exploit code : program to input invalid value
exploit-db.com : a web page which has many exploit codes

port scan

send TCP SYN packet
response SYN/ACK → open
response RST or no reaction → close

Get version information

/* Open SSH */
$ telnet 127.0.0.1 22
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
SSH-2.0-OpenSSH_6.0p1 Debian-3ubuntu1

/* Apache */
$telnet 127.0.0.1 80

nmap comand

sudo nmap -sSVC -0 127.0.0.1
-sS : SYN scan
-sV : Research service and version
-sC: Research detail info with service
  Use custom script (LUA)
-O: Assume OS

Recommneded Book

Uncategorized recent post

  1. Run Amazon FreeRTOS on M5Stack Core2 for AWS …

  2. Udacity Self-Driving Car Engineer Nanodegree …

  3. Install sbt 1.0.0 and run sample template

  4. Visualization of Neural Network and its Train…

  5. [Machine Learning]Created docker image includ…

関連記事

PAGE TOP