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/bash | |
| RUNENV="" | |
| RUNTIME="" | |
| MODE="" | |
| FIRST_INTF="" | |
| SECOND_INTF="" | |
| SYS_PARAM="" | |
| DP_PARAM="" | |
| CP_PARAM="" |
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
| => ?K 'help' | |
| base - print or set address offset | |
| bdinfo - print Board Info structure | |
| blkcache - block cache diagnostics and control | |
| boot - boot default, i.e., run 'bootcmd' | |
| bootd - boot default, i.e., run 'bootcmd' | |
| bootefi - Boots an EFI payload from memor▒сfrom memory | |
| bootm - boot application image from memory | |
| bootp - boot image via network using BOOTP/TFTP protocol |
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
| U-Boot SPL 2021.10-armbian (Dec 14 2023 - 22:48:52 -0800) | |
| pmic id is 0x4b | |
| VDD_DRAM is: 1240 | |
| data1=0,data2=3c3c55aa | |
| data1=0,data2=3c3c55aa | |
| data1=0,data2=3c3c55aa | |
| data1=3c3c55aa,data2=3c3c55aa | |
| data1=0,data2=3c3c55aa | |
| data1=0,data2=3c3c55aa | |
| data1=3c3c55aa,data2=3c3c55aa |
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
| metadata: | |
| language: v2-beta | |
| name: "no content type check" | |
| description: "Checks is a response has a text/html content type and no charset set" | |
| tags: "passive" | |
| given response then | |
| if {to_lower(latest.response.headers)} matches "content-type: text/html\r\n" then | |
| if not ({latest.response.body} matches "<meta charset=\".+?\">") then |
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
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os/exec" | |
| "sync" | |
| "time" |
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
| retailedge.intel.com | |
| itcenterconnect.intel.com | |
| sipfed.intel.com | |
| intelav.intel.com | |
| intelewc.intel.com | |
| sip.intel.com | |
| click.intel.com | |
| ipip.intel.com | |
| boss.filegridnetwork.com |
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
| 0-hubs-2-iosdm.v.aaplimg.com | |
| 0-hubs-3-iosdm.v.aaplimg.com | |
| 0-hubs-iosdm.v.aaplimg.com | |
| 1-courier.push.apple.com | |
| 1-hubs-2-iosdm.v.aaplimg.com | |
| 1-hubs-3-iosdm.v.aaplimg.com | |
| 1-hubs-iosdm.v.aaplimg.com | |
| 10-courier.push.apple.com | |
| 11-courier.push.apple.com | |
| 12-courier.push.apple.com |
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
| CREATE TABLE IF NOT EXISTS data | |
| ( | |
| pkey bigserial PRIMARY KEY, | |
| value text NOT NULL, | |
| count integer NOT NULL, | |
| first_blood text NOT NULL | |
| ); | |
| CREATE UNIQUE INDEX IF NOT EXISTS value_idx ON data USING btree(value); |
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
| from ghidra.app.decompiler import DecompileOptions | |
| from ghidra.app.decompiler import DecompInterface | |
| from ghidra.util.task import ConsoleTaskMonitor | |
| from ghidra.program.model.symbol import SymbolType | |
| TARGET_FUNC = "printf" | |
| target_addr = 0 | |
| symbol = currentProgram.symbolTable.getExternalSymbol(TARGET_FUNC) | |
| if symbol and symbol.symbolType == SymbolType.FUNCTION: |
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/bash | |
| explain='false' | |
| profile='default' | |
| if ! command -v aws &> /dev/null | |
| then | |
| echo "aws cli command could not be found, please install before using this" | |
| exit | |
| else | |
| echo "aws cli command found, continuing" | |
| fi |
NewerOlder