Skip to content

Instantly share code, notes, and snippets.

2023-07-24T11:40:31-07:00 info-2 trufflehog trufflehog 3.44.0
2023-07-24T11:40:31-07:00 info-2 trufflehog engine started {"workers": 16}
2023-07-24T11:40:31-07:00 info-0 trufflehog loaded decoders {"count": 3}
2023-07-24T11:40:31-07:00 info-0 trufflehog loaded detectors {"total": 745, "verification_enabled": 0, "verification_disabled": 745}
🐷🔑🐷 TruffleHog. Unearth your secrets. 🐷🔑🐷
2023-07-24T11:40:31-07:00 info-3 trufflehog scanning file {"source_type": "SOURCE_TYPE_FILESYSTEM", "source_name": "filesystem", "path": "testfile.txt"}
Found unverified result 🐷🔑❓
Detector Type: PrivateKey
Decoder Type: PLAIN
@anuraagbaishya
anuraagbaishya / testfile.txt
Created July 24, 2023 18:17
Trufflehog Bug report files
-----BEGIN RSA PRIVATE KEY-----
MIIEpAIBAAKCAQEAhUn0crkw5i22PPSERAOn4CKKSVsFmGvNawanZXAeXuQwKm0k
qiaQfoLYZ/ESNgGKfGi2cLzk35wLyEjMYvpdcQEjd1kso82/HDsEa7lMcariIGmn
gi6aRUOQuP2Ez1z3k7WiPlvQMEfefh8ncT68xv29F/csOb4A8jtwoSLcfnBhCtqq
b1bO5WnZa7yXbRudhtx8SrIs4h9a8LsqMhBstXQkC2dNVmSzC07dm51WBRSwW5z7
AzjWxwG326nCgoiIeV0C92XsMyd35kVHul3a66bn3k3UZGc6WZXTyCXYl9V0QwXl
3cY/IptAls4O7vzpB5wjp2gauHH3isC+6i92vwIDAQABAoIBAGqEGFKaBibcPvdl
XFHSLhUi5SoMEGOnOsidz6ZzvAGPD6LIB/XlzbEcNX6TGz+HablUIP/lJG5CEPRk
oNk0RPoqs8ILxG2+3UvdKgJAWYO40O6gIFobjfNuNDhxePIR1FP5Yge9bZk3xek6
UlXgkhHf8n41a+VVHwJ1V+OdrWFomaPO1+hfOlQ7VDmkUJtw8ZEq6TuDtNz/kqkX
@anuraagbaishya
anuraagbaishya / query.txt
Created July 10, 2023 15:30
Introspection Get query
query{
__schema
{queryType {name}mutationType {name}subscriptionType {name}types {...FullType}directives {name description args {...InputValue}}}}fragment FullType on __Type {kind name description fields(includeDeprecated: true) {name description args {...InputValue}type {...TypeRef}isDeprecated deprecationReason}inputFields {...InputValue}interfaces {...TypeRef}enumValues(includeDeprecated: true) {name description isDeprecated deprecationReason}possibleTypes {...TypeRef}}fragment InputValue on __InputValue {name description type {...TypeRef}defaultValue}fragment TypeRef on __Type {kind name ofType {kind name ofType {kind name ofType {kind name}}}}
@anuraagbaishya
anuraagbaishya / .travis.yaml
Created October 24, 2018 17:43
Travis File
language: android
jdk: oraclejdk8
sudo: false
android:
components:
- platform-tools
- tools
- build-tools-24.0.2
- android-22
@anuraagbaishya
anuraagbaishya / QuestionActivity.java
Created October 5, 2015 05:12
QuestionActivity Load Errors
package com.appex.android.inquisitor.activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
@anuraagbaishya
anuraagbaishya / DrawerLayout.xml
Last active August 29, 2015 14:22
EventActivity Drawer Issues
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="280dp"
android:layout_height="match_parent"
android:id="@+id/drawerPane"
android:layout_gravity="start"
xmlns:android="http://schemas.android.com/apk/res/android">
<ListView
android:id="@+id/navList"
android:layout_width="280dp"
@anuraagbaishya
anuraagbaishya / AndroidManifest.xml
Last active August 29, 2015 14:22
Content Provider Errors
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.appex.android.inquisitor" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
@anuraagbaishya
anuraagbaishya / EndActivity.java
Last active August 29, 2015 14:17
Fragment Error
package com.appex.android.inquisitor;
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.app.ActionBarActivity;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;