This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
001dd76872d80801692ff942308c64e6 | |
002325a0a67fded0381b5648d7fe9b8e | |
00dbb9e1c09dbdafb360f3163ba5a3de | |
00f24328b282b28bc39960d55603e380 | |
0115338e11f85d7a2226933712acaae8 | |
0141955eb5b90ce25b506757ce151275 | |
0149b7bd7218aab4e257d28469fddb0d | |
016da6ee744b16656a2ba3107c7a4a29 | |
01e0dc079d4e33d8edd050c4900818da | |
024fd07dbdacc7da227bede3449c2b6a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mal/Barkio-A | |
Mal/Behav-001 | |
Mal/Behav-112 | |
Mal/Behav-116 | |
Mal/Behav-204 | |
Mal/Behav-363 | |
Mal/Ecltys-A | |
Mal/Ecltys-C | |
Mal/Emogen-Y | |
Mal/Generic-L |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' Q B a s i c G o r i l l a s | |
' | |
' Copyright (C) Microsoft Corporation 1990 | |
' | |
' Your mission is to hit your opponent with the exploding banana | |
' by varying the angle and power of your throw, taking into account | |
' wind speed, gravity, and the city skyline. | |
' | |
' Speed of this game is determined by the constant SPEEDCONST. If the | |
' program is too slow or too fast adjust the "CONST SPEEDCONST = 500" line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Network indicators | |
Network based indications of possible compromise by the comment crew attackers. | |
HTTP POST traffic containing | |
name=GeorgeBush&userid=<4 digit number>&other= | |
HTTP GET traffic to pages with paths: | |
aspnet_client/report.asp | |
Resource/device_Tr.asp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[EditionID] | |
{Edition ID} | |
[Channel] | |
{Channel Type} | |
[VL] | |
{Volume License} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem ******************************************************************************** | |
rem * Setup base environment | |
rem ******************************************************************************** | |
SET DIRCMD=/O | |
SET PROMPT=$p$g | |
SET PATH=\;\DOS; | |
CD \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def number_of_bits(int): | |
try: | |
return len(bin(int)[2:]) | |
except TypeError: | |
print("Error: not an integer") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt install docker.io | |
sudo apt install npm coffeescript libicu-dev ruby-dev ruby-bundler rake-compiler ruby-mocha ruby-plist pry ruby-yajl ruby-byebug | |
sudo gem install -g Gemfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rsync -a myfile /foo/bar/ # works if /foo exists but /foo/bar doesn't. bar is created. |