2021-02-22 12:50:49 +05:30
|
|
|
package engine
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2021-10-09 19:37:12 +02:00
|
|
|
"io/ioutil"
|
2021-02-22 12:50:49 +05:30
|
|
|
"net/http"
|
|
|
|
|
"net/http/httptest"
|
|
|
|
|
"net/url"
|
2021-10-10 08:29:58 +02:00
|
|
|
"os"
|
2021-02-22 12:50:49 +05:30
|
|
|
"strings"
|
|
|
|
|
"testing"
|
2021-03-01 14:20:56 +05:30
|
|
|
"time"
|
2021-02-22 12:50:49 +05:30
|
|
|
|
2021-10-13 20:08:10 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
2021-04-19 01:00:59 +05:30
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/protocols/common/protocolstate"
|
2021-02-22 12:50:49 +05:30
|
|
|
"github.com/projectdiscovery/nuclei/v2/pkg/types"
|
|
|
|
|
)
|
|
|
|
|
|
2021-10-10 17:18:53 +02:00
|
|
|
func TestActionNavigate(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
|
|
|
|
response := `
|
2021-02-22 12:50:49 +05:30
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>Nuclei Test</h1>
|
|
|
|
|
</body>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-02-22 12:50:49 +05:30
|
|
|
|
|
|
|
|
actions := []*Action{{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}}, {ActionType: "waitload"}}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionScript(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
|
|
response := `
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
<script>window.test = 'some-data';</script>
|
|
|
|
|
</html>`
|
|
|
|
|
|
|
|
|
|
timeout := 2 * time.Second
|
|
|
|
|
|
2021-02-22 12:50:49 +05:30
|
|
|
t.Run("run-and-results", func(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-02-22 12:50:49 +05:30
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "script", Name: "test", Data: map[string]string{"code": "window.test"}},
|
|
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, timeout, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
2021-10-13 20:45:04 +02:00
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
require.Equal(t, "some-data", out["test"], "could not run js and get results correctly")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
})
|
|
|
|
|
|
|
|
|
|
t.Run("hook", func(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-02-22 12:50:49 +05:30
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "script", Data: map[string]string{"code": "window.test = 'some-data';", "hook": "true"}},
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "script", Name: "test", Data: map[string]string{"code": "window.test"}},
|
|
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, timeout, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
2021-10-13 20:45:04 +02:00
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
require.Equal(t, "some-data", out["test"], "could not run js and get results correctly with js hook")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionClick(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-02-22 12:50:49 +05:30
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-02-22 12:50:49 +05:30
|
|
|
<html>
|
2021-10-14 17:35:32 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
<button onclick='this.setAttribute("a", "ok")'>click me</button>
|
|
|
|
|
</html>`
|
2021-02-22 12:50:49 +05:30
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "click", Data: map[string]string{"selector": "button"}}, // Use css selector for clicking
|
|
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
el := page.Page().MustElement("button")
|
|
|
|
|
val := el.MustAttribute("a")
|
|
|
|
|
require.Equal(t, "ok", *val, "could not click button")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionRightClick(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-02-22 12:50:49 +05:30
|
|
|
<html>
|
2021-10-14 17:35:32 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
<button id="test" onrightclick=''>click me</button>
|
|
|
|
|
<script>
|
|
|
|
|
elm = document.getElementById("test");
|
|
|
|
|
elm.onmousedown = function(event) {
|
|
|
|
|
if (event.which == 3) {
|
|
|
|
|
elm.setAttribute("a", "ok")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
</html>`
|
2021-02-22 12:50:49 +05:30
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "rightclick", Data: map[string]string{"selector": "button"}}, // Use css selector for clicking
|
|
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
el := page.Page().MustElement("button")
|
|
|
|
|
val := el.MustAttribute("a")
|
|
|
|
|
require.Equal(t, "ok", *val, "could not click button")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionTextInput(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-02-22 12:50:49 +05:30
|
|
|
<html>
|
2021-10-14 17:35:32 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
<input type="text" onchange="this.setAttribute('event', 'input-change')">
|
|
|
|
|
</html>`
|
2021-02-22 12:50:49 +05:30
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "text", Data: map[string]string{"selector": "input", "value": "test"}},
|
|
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
el := page.Page().MustElement("input")
|
|
|
|
|
val := el.MustAttribute("event")
|
|
|
|
|
require.Equal(t, "input-change", *val, "could not get input change")
|
|
|
|
|
require.Equal(t, "test", el.MustText(), "could not get input change value")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionHeadersChange(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-02-22 12:50:49 +05:30
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "setheader", Data: map[string]string{"part": "request", "key": "Test", "value": "Hello"}},
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
handler := func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
if r.Header.Get("Test") == "Hello" {
|
|
|
|
|
_, _ = fmt.Fprintln(w, `found`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
testHeadless(t, actions, 20*time.Second, handler, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "found", strings.ToLower(strings.TrimSpace(page.Page().MustElement("html").MustText())), "could not set header correctly")
|
|
|
|
|
})
|
2021-02-22 12:50:49 +05:30
|
|
|
}
|
2021-10-09 13:18:43 +02:00
|
|
|
|
|
|
|
|
func TestActionScreenshot(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 08:29:58 +02:00
|
|
|
<html>
|
2021-10-14 17:35:32 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
</html>`
|
2021-10-10 08:29:58 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
2021-10-10 08:36:44 +02:00
|
|
|
{ActionType: "screenshot", Data: map[string]string{"to": "test"}},
|
2021-10-10 08:29:58 +02:00
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
el := page.Page()
|
|
|
|
|
require.FileExists(t, "test.png", el, "could not get screenshot file")
|
|
|
|
|
_ = os.Remove("test.png")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionTimeInput(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 08:29:58 +02:00
|
|
|
<html>
|
2021-10-14 17:35:32 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
<input type="date">
|
|
|
|
|
</html>`
|
2021-10-10 08:29:58 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "time", Data: map[string]string{"selector": "input", "value": "2006-01-02T15:04:05Z"}},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
el := page.Page().MustElement("input")
|
|
|
|
|
require.Equal(t, "2006-01-02", el.MustText(), "could not get input time value")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionSelectInput(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-09 23:19:07 +02:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<select name="test" id="test">
|
|
|
|
|
<option value="test1">Test1</option>
|
|
|
|
|
<option value="test2">Test2</option>
|
|
|
|
|
</select>
|
|
|
|
|
</body>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-10-09 23:19:07 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "select", Data: map[string]string{"by": "x", "xpath": "//select[@id='test']", "value": "Test2", "selected": "true"}},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
el := page.Page().MustElement("select")
|
|
|
|
|
require.Equal(t, "Test2", el.MustText(), "could not get input change value")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionFilesInput(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 08:29:58 +02:00
|
|
|
<html>
|
2021-10-14 17:35:32 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>Nuclei Test Page</body>
|
|
|
|
|
<input type="file">
|
|
|
|
|
</html>`
|
2021-10-10 08:29:58 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
{ActionType: "files", Data: map[string]string{"selector": "input", "value": "test1.pdf"}},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Nuclei Test Page", page.Page().MustInfo().Title, "could not navigate correctly")
|
|
|
|
|
el := page.Page().MustElement("input")
|
|
|
|
|
require.Equal(t, "C:\\fakepath\\test1.pdf", el.MustText(), "could not get input file")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionWaitLoad(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 13:17:35 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 13:17:35 +02:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<button id="test">Wait for me!</button>
|
|
|
|
|
<script>
|
|
|
|
|
window.onload = () => document.querySelector('#test').style.color = 'red';
|
|
|
|
|
</script>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-10-10 13:17:35 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
}
|
2021-10-14 17:35:32 +03:00
|
|
|
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
el := page.Page().MustElement("button")
|
|
|
|
|
style, attributeErr := el.Attribute("style")
|
|
|
|
|
require.Nil(t, attributeErr)
|
|
|
|
|
require.Equal(t, "color: red;", *style, "could not get color")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionGetResource(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 13:17:35 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 13:17:35 +02:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<img id="test" src="https://nuclei.projectdiscovery.io/static/logo.png">
|
|
|
|
|
</body>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-10-10 13:17:35 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "getresource", Data: map[string]string{"by": "x", "xpath": "//img[@id='test']"}, Name: "src"},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, len(out["src"]), 3159, "could not find resource")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionExtract(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 13:17:35 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 13:17:35 +02:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<button id="test">Wait for me!</button>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-10-10 13:17:35 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "extract", Data: map[string]string{"by": "x", "xpath": "//button[@id='test']"}, Name: "extract"},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "Wait for me!", out["extract"], "could not extract text")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionSetMethod(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 13:17:35 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-10 13:17:35 +02:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-10-10 13:17:35 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "setmethod", Data: map[string]string{"part": "x", "method": "SET"}},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "SET", page.rules[0].Args["method"], "could not find resource")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionAddHeader(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-09 19:37:12 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "addheader", Data: map[string]string{"part": "request", "key": "Test", "value": "Hello"}},
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
handler := func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
if r.Header.Get("Test") == "Hello" {
|
|
|
|
|
_, _ = fmt.Fprintln(w, `found`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
testHeadless(t, actions, 20*time.Second, handler, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "found", strings.ToLower(strings.TrimSpace(page.Page().MustElement("html").MustText())), "could not set header correctly")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionDeleteHeader(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-09 19:37:12 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "addheader", Data: map[string]string{"part": "request", "key": "Test1", "value": "Hello"}},
|
|
|
|
|
{ActionType: "addheader", Data: map[string]string{"part": "request", "key": "Test2", "value": "World"}},
|
|
|
|
|
{ActionType: "deleteheader", Data: map[string]string{"part": "request", "key": "Test2"}},
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
handler := func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
if r.Header.Get("Test1") == "Hello" && r.Header.Get("Test2") == "" {
|
|
|
|
|
_, _ = fmt.Fprintln(w, `header deleted`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
testHeadless(t, actions, 20*time.Second, handler, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "header deleted", strings.ToLower(strings.TrimSpace(page.Page().MustElement("html").MustText())), "could not delete header correctly")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionSetBody(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-09 19:37:12 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "setbody", Data: map[string]string{"part": "request", "body": "hello"}},
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
handler := func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
body, _ := ioutil.ReadAll(r.Body)
|
|
|
|
|
_, _ = fmt.Fprintln(w, string(body))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
testHeadless(t, actions, 20*time.Second, handler, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.Equal(t, "hello", strings.ToLower(strings.TrimSpace(page.Page().MustElement("html").MustText())), "could not set header correctly")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionKeyboard(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
2021-10-09 23:19:07 +02:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2021-10-13 20:29:28 +02:00
|
|
|
<input type="text" name="test" id="test">
|
2021-10-09 23:19:07 +02:00
|
|
|
</body>
|
2021-10-14 17:35:32 +03:00
|
|
|
</html>`
|
2021-10-09 23:19:07 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitload"},
|
2021-10-13 20:29:28 +02:00
|
|
|
{ActionType: "click", Data: map[string]string{"selector": "input"}},
|
|
|
|
|
{ActionType: "keyboard", Data: map[string]string{"keys": "Test2"}},
|
2021-10-09 23:19:07 +02:00
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
el := page.Page().MustElement("input")
|
|
|
|
|
require.Equal(t, "Test2", el.MustText(), "could not get input change value")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestActionSleep(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
2021-10-10 17:18:53 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
response := `
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<button style="display:none" id="test">Wait for me!</button>
|
|
|
|
|
<script>
|
|
|
|
|
setTimeout(() => document.querySelector('#test').style.display = '', 1000);
|
|
|
|
|
</script>
|
|
|
|
|
</html>`
|
2021-10-10 17:18:53 +02:00
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "sleep", Data: map[string]string{"duration": "2"}},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
testHeadlessSimpleResponse(t, response, actions, 20*time.Second, func(page *Page, err error, out map[string]string) {
|
|
|
|
|
require.Nil(t, err, "could not run page actions")
|
|
|
|
|
require.True(t, page.Page().MustElement("button").MustVisible(), "could not get button")
|
|
|
|
|
})
|
2021-10-09 13:18:43 +02:00
|
|
|
}
|
2021-10-09 19:37:12 +02:00
|
|
|
|
2021-10-09 12:26:18 +02:00
|
|
|
func TestActionWaitVisible(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
|
|
response := `
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Nuclei Test Page</title>
|
|
|
|
|
</head>
|
|
|
|
|
<button style="display:none" id="test">Wait for me!</button>
|
|
|
|
|
<script>
|
|
|
|
|
setTimeout(() => document.querySelector('#test').style.display = '', 1000);
|
|
|
|
|
</script>
|
|
|
|
|
</html>`
|
|
|
|
|
|
|
|
|
|
actions := []*Action{
|
|
|
|
|
{ActionType: "navigate", Data: map[string]string{"url": "{{BaseURL}}"}},
|
|
|
|
|
{ActionType: "waitvisible", Data: map[string]string{"by": "x", "xpath": "//button[@id='test']"}},
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-09 17:30:45 +02:00
|
|
|
t.Run("wait for an element being visible", func(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, 2*time.Second, func(page *Page, err error, out map[string]string) {
|
2021-10-13 20:08:10 +03:00
|
|
|
require.Nil(t, err, "could not run page actions")
|
2021-10-09 12:26:18 +02:00
|
|
|
|
2021-10-13 20:08:10 +03:00
|
|
|
page.Page().MustElement("button").MustVisible()
|
|
|
|
|
})
|
|
|
|
|
})
|
2021-10-09 12:26:18 +02:00
|
|
|
|
2021-10-13 20:08:10 +03:00
|
|
|
t.Run("timeout because of element not visible", func(t *testing.T) {
|
2021-10-14 17:35:32 +03:00
|
|
|
t.Parallel()
|
|
|
|
|
testHeadlessSimpleResponse(t, response, actions, time.Second/2, func(page *Page, err error, out map[string]string) {
|
2021-10-13 20:08:10 +03:00
|
|
|
require.Error(t, err)
|
|
|
|
|
require.Contains(t, err.Error(), "Element did not appear in the given amount of time")
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
2021-10-09 12:26:18 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
func testHeadlessSimpleResponse(t *testing.T, response string, actions []*Action, timeout time.Duration, assert func(page *Page, pageErr error, out map[string]string)) {
|
|
|
|
|
t.Helper()
|
|
|
|
|
testHeadless(t, actions, timeout, func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
_, _ = fmt.Fprintln(w, response)
|
|
|
|
|
}, assert)
|
|
|
|
|
}
|
2021-10-09 12:26:18 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
func testHeadless(t *testing.T, actions []*Action, timeout time.Duration, handler func(w http.ResponseWriter, r *http.Request), assert func(page *Page, pageErr error, extractedData map[string]string)) {
|
|
|
|
|
t.Helper()
|
2021-10-13 20:08:10 +03:00
|
|
|
_ = protocolstate.Init(&types.Options{})
|
2021-10-09 17:30:45 +02:00
|
|
|
|
2021-10-13 20:08:10 +03:00
|
|
|
browser, err := New(&types.Options{ShowBrowser: false})
|
|
|
|
|
require.Nil(t, err, "could not create browser")
|
|
|
|
|
defer browser.Close()
|
2021-10-09 17:30:45 +02:00
|
|
|
|
2021-10-13 20:08:10 +03:00
|
|
|
instance, err := browser.NewInstance()
|
|
|
|
|
require.Nil(t, err, "could not create browser instance")
|
2021-10-14 17:35:32 +03:00
|
|
|
defer instance.Close()
|
2021-10-09 17:30:45 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
ts := httptest.NewServer(http.HandlerFunc(handler))
|
2021-10-13 20:08:10 +03:00
|
|
|
defer ts.Close()
|
2021-10-09 12:26:18 +02:00
|
|
|
|
2021-10-13 20:08:10 +03:00
|
|
|
parsed, err := url.Parse(ts.URL)
|
|
|
|
|
require.Nil(t, err, "could not parse URL")
|
2021-10-14 17:35:32 +03:00
|
|
|
extractedData, page, err := instance.Run(parsed, actions, timeout)
|
|
|
|
|
assert(page, err, extractedData)
|
2021-10-09 17:30:45 +02:00
|
|
|
|
2021-10-14 17:35:32 +03:00
|
|
|
if page != nil {
|
|
|
|
|
page.Close()
|
2021-10-13 20:08:10 +03:00
|
|
|
}
|
2021-10-09 12:26:18 +02:00
|
|
|
}
|