This file contains 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
rule get_eip | |
{ | |
meta: | |
author = "William Ballenthin" | |
email = "[email protected]" | |
license = "Apache 2.0" | |
copyright = "FireEye, Inc" | |
description = "Match x86 that appears to fetch $PC." | |
strings: |
This file contains 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
rule get_eip | |
{ | |
meta: | |
author = "William Ballenthin" | |
email = "[email protected]" | |
license = "Apache 2.0" | |
copyright = "FireEye, Inc" | |
description = "Match x86 that appears to fetch $PC." | |
strings: |
This file contains 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
''' | |
IDAPython script that generates a YARA rule to match against the | |
basic blocks of the current function. It masks out relocation bytes | |
and ignores jump instructions (given that we're already trying to | |
match compiler-specific bytes, this is of arguable benefit). | |
If python-yara is installed, the IDAPython script also validates that | |
the generated rule matches at least one segment in the current file. | |
author: Willi Ballenthin <[email protected]> |
This file contains 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
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |
This file contains 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
package remoteLogging; | |
import java.io.File; | |
import java.util.logging.Logger; | |
import javax.servlet.ServletException; | |
import com.google.gwt.logging.server.RemoteLoggingServiceImpl; | |
import com.google.gwt.user.client.rpc.SerializationException; |
This file contains 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
package test.dashboard.client.app.start; | |
import javax.inject.Inject; | |
import test.dashboard.client.app.triggerList.TriggerListPagePresenter; | |
import test.dashboard.client.app.visitorList.VisitorListPagePresenter; | |
import test.dashboard.client.messages.Messages; | |
import test.dashboard.client.theme.base.AppGss; | |
import com.google.gwt.core.client.GWT; |
This file contains 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
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> | |
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' | |
xmlns:g='urn:import:com.google.gwt.user.client.ui' | |
xmlns:mgwt="urn:import:com.googlecode.mgwt.ui.client.widget" | |
xmlns:p='urn:import:com.vaadin.polymer.paper.widget' | |
xmlns:i='urn:import:com.vaadin.polymer.iron.widget' | |
ui:generateFormat='com.google.gwt.i18n.rebind.format.PropertiesFormat' | |
ui:generateKeys='com.google.gwt.i18n.rebind.keygen.MD5KeyGenerator' | |
ui:generateLocales='default'> |
This file contains 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
-- init.lua -- | |
WIFI_SSID = "ssid" | |
WIFI_PASS = "1232134123" | |
wifiReady = 0 | |
WIFI_LED = 0 | |
WIFI_ALARM_ID = 0 |
This file contains 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
-- init.lua -- | |
WIFI_SSID = "fill out" | |
WIFI_PASS = "fill out" | |
wifiReady = 0 | |
WIFI_LED = 0 | |
WIFI_ALARM_ID = 0 |
This file contains 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
------------------------------------------------------------ | |
All tasks runnable from root project | |
------------------------------------------------------------ | |
Android tasks | |
------------- | |
app:androidDependencies - Displays the Android dependencies of the project. | |
app:signingReport - Displays the signing info for each variant. | |
app:sourceSets - Prints out all the source sets defined in this project. |
NewerOlder