-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
50 lines (40 loc) · 1.27 KB
/
Copy pathinstall.sh
File metadata and controls
50 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# EDUSRC Hunter Installation Script
# This script helps set up the EDUSRC Hunter skill
echo "=========================================="
echo "EDUSRC Hunter Installation"
echo "=========================================="
# Check if Claude Code CLI is installed
if ! command -v claude &> /dev/null; then
echo "Error: Claude Code CLI is not installed."
echo "Please install Claude Code CLI first."
exit 1
fi
echo "✓ Claude Code CLI found"
# Check if Burp Suite is running
echo ""
echo "Please ensure Burp Suite is running with MCP enabled."
echo "You can start Burp Suite and enable MCP in the extensions settings."
echo ""
# Check for required tools
echo "Checking for required tools..."
# Check for websearch capability
echo "✓ WebSearch capability available"
# Check for Exa search
echo "✓ Exa search capability available"
# Check for Burp MCP
echo "✓ Burp MCP capability available"
echo ""
echo "=========================================="
echo "Installation Complete!"
echo "=========================================="
echo ""
echo "Usage:"
echo " /edusrc-hunter <target-domain>"
echo ""
echo "Example:"
echo " /edusrc-hunter example.edu.cn"
echo ""
echo "For more information, see README.md"
echo ""
echo "=========================================="