I hereby claim:
- I am jabberd on github.
- I am jabberd (https://keybase.io/jabberd) on keybase.
- I have a public key whose fingerprint is EC32 8333 C8DD A991 C9DC DEE1 F337 A17B D2B3 0C61
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| function get-loggedonusers | |
| { | |
| param([Array]$Computer) | |
| $computers = get-wmiobject Win32_Computersystem -computername $Computer | |
| $report = @() | |
| foreach ($c in $computers) { | |
| $temp = "" | Select Computer, Username | |
| $temp.Computer = $c.name | |
| $temp.Username = $c.username | |
| $report += $temp |
| 1. Set up streaming server: | |
| /interface wireless sniffer set streaming-server=X.X.X.X | |
| /interface wireless sniffer set streaming-enabled=yes | |
| /interface wireless sniffer set multiple-channels=yes | |
| 2. Set up scan list or specific channel(s) (frequencies in MHz): | |
| /interface wireless set scan-list=default | |
| 3. Start up the sniffer: | |
| /interface wireless sniffer sniff interface=wlan1 |
| #! /usr/bin/env perl | |
| ################################################### | |
| # | |
| # Copyleft (C) 2014 @jabberd | |
| # | |
| # This file is part of Shutter. | |
| # | |
| # Shutter is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 3 of the License, or |
| <?php | |
| echo time(); | |
| if ($_SERVER['HTTP_HOST'] != 'localhost') { | |
| die; | |
| } | |
| $options = array( | |
| 'type' => 'self', | |
| 'id' => isset($_GET['id']) ? $_GET['id'] : false, | |
| 'key' => isset($_GET['key']) ? $_GET['key'] : false, |
| add dst-host=d78fikflryjgj.cloudfront.net | |
| add dst-host=trello.com | |
| add dst-host=trello-avatars.s3.amazonaws.com | |
| add dst-host=trello-attachments.s3.amazonaws.com | |
| add dst-host=trello-backgrounds.s3.amazonaws.com | |
| add dst-host=trello-logos.s3.amazonaws.com | |
| add dst-host=pixel.quantserve.com | |
| add src-address=<IP ADDRESS TO ALLOW> | |
| add action=deny comment="Deny everything else" |
| # tgSendMessage is set by tgSetEnvironment script which runs at startup by the scheduler, | |
| # contains Telegram BotAPI string for sendMessage method. | |
| :global tgSendMessage | |
| :global tgID | |
| # This is used to track already shown log entries | |
| :global lastLogID | |
| # Log buffer name | |
| :local logName "LogTrap" |
| :global tgAPI "https://api.telegram.org/bot123456789:ABCDEF0123456789abcdef0123456789ABC" | |
| :global tgID "123456" | |
| # Telegram BotAPI sendMessage method | |
| # Example: $tgSendMessage $chatid $text | |
| :global tgSendMessage do={ | |
| :global tgAPI | |
| :local url ($tgAPI . "/sendMessage\?chat_id=" . $1 . "&text=" . $2) | |
| /tool fetch keep-result=no url="$url" | |
| } |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| def read_config(filename): | |
| config = None | |
| try: | |
| f = open(filename, 'r') | |
| except: |
| #!/usr/bin/env python | |
| layout = [ | |
| ['1234567890-=', 'qwertyuiop[]', 'asdfghjkl;\'\\', 'zxcvbnm,./'], | |
| ['!@#$%^&*()_+', 'QWERTYUIOP{}', 'ASDFGHJKL:"|', 'ZXCVBNM<>?'] | |
| ] | |
| def get_char(xy, shift = 0): | |
| x, y = xy; | |
| return layout[shift][x][y] |