From 2928732d5ca29cf4bb82abe4a42fde753fa6af16 Mon Sep 17 00:00:00 2001 From: Matthew Carter Date: Fri, 16 May 2025 16:27:41 +0800 Subject: [PATCH 1/2] Updating readme and secrets example --- README.md | 190 +++++++++++++++++++++++++++--- hasItPumped/backend/.env.example | 1 + hasItPumped/frontend/.env.example | 1 + 3 files changed, 175 insertions(+), 17 deletions(-) create mode 100644 hasItPumped/backend/.env.example create mode 100644 hasItPumped/frontend/.env.example diff --git a/README.md b/README.md index 3d4e098..dd58b8d 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,180 @@ -# fraudbuster-rug-pull-detector +# Has It Pumped? 📈 -# TODO 7th May +![Has It Pumped Logo](/frontend/public/pumped.png) +A Solana token analysis tool that predicts whether tokens have already peaked or still have room to grow. -## Clean up -- Check if pre/post pump prediction is made from last data point -x - Clean up python routing into chunked files -x - Introduce testing into fast api and nextjs -x - image size ? -x - footer background color -x - loading flash ? +## 📋 Overview +**Has It Pumped?** is a web application that helps users analyze Solana tokens, particularly those from [pump.fun](https://pump.fun), to determine if they've already reached their peak price or if they still have potential for growth. The application: -## Hosting -x - dockerising ? -x - hosting fastapi and nextjs separately ? -- ? +- Analyzes Solana token price history +- Predicts if tokens are "pre-peak" or "post-peak" +- Visualizes token price charts +- Provides confidence levels for predictions +- Displays recent tokens and overall statistics -## Launching -- instagram clips -- video tour + analysis and scrape walk through -- message people, leaving comments on people +## 🏗️ Project Structure +The project is organized as a full-stack application: + +``` +analysis/ # Analysis for prediction model +hasItPumped/ +├── frontend/ # Next.js frontend application +└── backend/ # FastAPI backend service +``` + +### Frontend (Next.js) + +The frontend is built with Next.js 14, using React, TypeScript, and Tailwind CSS. It includes: + +- Interactive token analysis interface +- Token price charts via GeckoTerminal integration +- Mobile-responsive design +- Recent token listings +- Statistics dashboard + +### Backend (FastAPI) + +The backend is built with FastAPI and provides: + +- Token analysis endpoint `/analyze_token` +- Database statistics via `/stats` +- XGBoost machine learning model for peak prediction +- Integration with BitQuery API for Solana DEX data +- SQLite database for caching token data + +## 🚀 Features + +- **Token Analysis:** Enter a Solana token mint address and get instant analysis +- **Pre-Peak/Post-Peak Prediction:** ML-powered prediction on token price potential +- **Price Visualization:** Interactive price charts showing historical token performance +- **Token Stats:** Quick view of token metadata, price, and volume +- **Recent Tokens:** Browse recently analyzed tokens +- **Dashboard Statistics:** View overall stats on analyzed tokens + +## 🛠️ Technical Stack + +### Frontend +- **Framework:** Next.js 14 +- **Language:** TypeScript +- **Styling:** Tailwind CSS, Shadcn/UI components +- **State Management:** React Query +- **Charts:** GeckoTerminal chart integration + +### Backend +- **Framework:** FastAPI +- **Language:** Python 3.11+ +- **Database:** SQLite +- **Machine Learning:** XGBoost +- **Data Processing:** Pandas +- **API Integration:** BitQuery for DEX data, GeckoTerminal for token metadata + +## 💻 Installation and Setup + +### Prerequisites +- Node.js 22+ +- Python 3.11+ +- Poetry (optional, for backend dependency management) + +### Backend Setup +```bash +# Navigate to backend directory +cd hasItPumped/backend + +# Install dependencies using Poetry +poetry install + +# Set up environment variables +cp .env.example .env +# Edit .env with your API keys (BitQuery API) + +# Run the backend service +poetry run python run.py +# Or +python src/solana_token_api/main.py +``` + +### Frontend Setup +```bash +# Navigate to frontend directory +cd hasItPumped/frontend + +# Install dependencies +npm ci + +# Set up environment variables +cp .env.example .env.local + +# Run the development server +npm run dev +``` + +## 🔄 API Endpoints + +### `/analyze_token` (POST) +Analyzes a Solana token and determines if it's pre-peak or post-peak. + +Request: +```json +{ + "mint_address": "SoLANATokenAddressHere..." +} +``` + +Response: +```json +{ + "mint_address": "SoLANATokenAddressHere...", + "data": [...], // Historical OHLCV data + "is_pre_peak": true, // Prediction result + "confidence": 0.85, // Confidence score (0-1) + "days_of_data": 30 // Days of historical data +} +``` + +### `/stats` (GET) +Returns overall statistics about analyzed tokens. + +Response: +```json +{ + "total_tokens": 150, + "pre_peak_count": 45, + "post_peak_count": 105, + "recent_tokens": [...] // List of recently analyzed tokens +} +``` + +## 🔍 How It Works + +1. The application fetches historical price data for Solana tokens using the BitQuery API +2. Data is processed and feature engineering is applied +3. An XGBoost model trained on historical token patterns makes the pre/post-peak prediction +4. Token metadata is fetched from GeckoTerminal +5. Results are presented in the UI with visualizations + +## 📝 Note + +This tool provides analysis based on historical patterns and should not be considered financial advice. The model is trained on historical data patterns of Solana tokens and makes predictions based on these patterns. + +## 🚨 Limitations + +- Only works with tokens that have sufficient historical data (minimum 3 days) +- Only analyzes Solana blockchain tokens +- Predictions are based on statistical patterns and are not guaranteed + +## 📄 License + +[MIT License](LICENSE) + +## 🤝 Contributing + +Contributions are welcome! Please feel free to submit a Pull Request. + +1. Fork the repository +2. Create your feature branch (`git checkout -b feature/amazing-feature`) +3. Commit your changes (`git commit -m 'Add some amazing feature'`) +4. Push to the branch (`git push origin feature/amazing-feature`) +5. Open a Pull Request \ No newline at end of file diff --git a/hasItPumped/backend/.env.example b/hasItPumped/backend/.env.example new file mode 100644 index 0000000..b9464d6 --- /dev/null +++ b/hasItPumped/backend/.env.example @@ -0,0 +1 @@ +BITQUERY_ACCESS_TOKEN="" diff --git a/hasItPumped/frontend/.env.example b/hasItPumped/frontend/.env.example new file mode 100644 index 0000000..600de8d --- /dev/null +++ b/hasItPumped/frontend/.env.example @@ -0,0 +1 @@ +NEXT_PUBLIC_API_URL=http://localhost:8000 From 30f1c866f020db5ffbc33aa66defe403bca85819 Mon Sep 17 00:00:00 2001 From: Matthew Carter Date: Fri, 16 May 2025 16:29:34 +0800 Subject: [PATCH 2/2] adding note about local dev db --- README.md | 5 +- hasItPumped/backend/gitleaks-report.json | 5000 ++++++++++++++++++++++ 2 files changed, 5003 insertions(+), 2 deletions(-) create mode 100644 hasItPumped/backend/gitleaks-report.json diff --git a/README.md b/README.md index dd58b8d..8555e0c 100644 --- a/README.md +++ b/README.md @@ -90,10 +90,11 @@ poetry install cp .env.example .env # Edit .env with your API keys (BitQuery API) +# Setup local dev DB (one off) +poetry run python src/solana_token_api/initialise_local_dev_db.py + # Run the backend service poetry run python run.py -# Or -python src/solana_token_api/main.py ``` ### Frontend Setup diff --git a/hasItPumped/backend/gitleaks-report.json b/hasItPumped/backend/gitleaks-report.json new file mode 100644 index 0000000..5d96305 --- /dev/null +++ b/hasItPumped/backend/gitleaks-report.json @@ -0,0 +1,5000 @@ +[ + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 525, + "EndLine": 525, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5N9mU6xNNtToDtrvMjfFrueExwwZqRdUbqjQwmiKpump", + "Secret": "5N9mU6xNNtToDtrvMjfFrueExwwZqRdUbqjQwmiKpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L525", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:525" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 527, + "EndLine": 527, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "Secret": "BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L527", + "Entropy": 4.7433004, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:527" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 530, + "EndLine": 530, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8xhH7tDB6m1akaexEYsn8Qkb58r6EY8MA4t958mipump", + "Secret": "8xhH7tDB6m1akaexEYsn8Qkb58r6EY8MA4t958mipump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L530", + "Entropy": 4.6784196, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:530" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 532, + "EndLine": 532, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump", + "Secret": "7oBYdEhV4GkXC19ZfgAvXpJWp2Rn9pm1Bx2cVNxFpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L532", + "Entropy": 4.8319397, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:532" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 534, + "EndLine": 534, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump", + "Secret": "CreiuhfwdWCN5mJbMJtA9bBpYQrQF2tCBuZwSPWfpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L534", + "Entropy": 4.6806893, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:534" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 536, + "EndLine": 536, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5N9mU6xNNtToDtrvMjfFrueExwwZqRdUbqjQwmiKpump", + "Secret": "5N9mU6xNNtToDtrvMjfFrueExwwZqRdUbqjQwmiKpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L536", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:536" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 538, + "EndLine": 538, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "Secret": "8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L538", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:538" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 540, + "EndLine": 540, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ce2gx9KGXJ6C9Mp5b5x1sn9Mg87JwEbrQby4Zqo3pump", + "Secret": "Ce2gx9KGXJ6C9Mp5b5x1sn9Mg87JwEbrQby4Zqo3pump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L540", + "Entropy": 4.8625073, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:540" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 542, + "EndLine": 542, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5241BVJpTDscdFM5bTmeuchBcjXN5sasBywyF7onkJZP", + "Secret": "5241BVJpTDscdFM5bTmeuchBcjXN5sasBywyF7onkJZP", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L542", + "Entropy": 4.8453507, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:542" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 544, + "EndLine": 544, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 9qriMjPPAJTMCtfQnz7Mo9BsV2jAWTr2ff7yc3JWpump", + "Secret": "9qriMjPPAJTMCtfQnz7Mo9BsV2jAWTr2ff7yc3JWpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L544", + "Entropy": 4.7433004, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:544" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 546, + "EndLine": 546, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/logs/api.log", + "SymlinkFile": "", + "Commit": "75af72383641c3d5e26b4033d341d26665035387", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/75af72383641c3d5e26b4033d341d26665035387/hasItPumped/backend/logs/api.log#L546", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-09T09:21:50Z", + "Message": "Cleaning up backend", + "Tags": [], + "Fingerprint": "75af72383641c3d5e26b4033d341d26665035387:hasItPumped/backend/logs/api.log:generic-api-key:546" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 492, + "EndLine": 492, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L492", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:492" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 496, + "EndLine": 496, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8us9FJ8M38sCv144HYooEYSSDxA1iBCqMNmYB7y8pump", + "Secret": "8us9FJ8M38sCv144HYooEYSSDxA1iBCqMNmYB7y8pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L496", + "Entropy": 4.669548, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:496" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 498, + "EndLine": 498, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "Secret": "8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L498", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:498" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 500, + "EndLine": 500, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BRLiKoD5jMwBYG82Az2R33Jo8hdGxhS5KLz385utpump", + "Secret": "BRLiKoD5jMwBYG82Az2R33Jo8hdGxhS5KLz385utpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L500", + "Entropy": 4.635235, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:500" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 502, + "EndLine": 502, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: G8jZcbzzYmUoVvzjqtGRKB9XhtTa1DuPTUw6fnS9pump", + "Secret": "G8jZcbzzYmUoVvzjqtGRKB9XhtTa1DuPTUw6fnS9pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L502", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:502" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 504, + "EndLine": 504, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "Secret": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L504", + "Entropy": 4.9251184, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:504" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 506, + "EndLine": 506, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: G8jZcbzzYmUoVvzjqtGRKB9XhtTa1DuPTUw6fnS9pump", + "Secret": "G8jZcbzzYmUoVvzjqtGRKB9XhtTa1DuPTUw6fnS9pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L506", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:506" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 508, + "EndLine": 508, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 62FcWQ46b5GSvJTV13wp1aWTnjEXkzKqVQ398tJHpump", + "Secret": "62FcWQ46b5GSvJTV13wp1aWTnjEXkzKqVQ398tJHpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L508", + "Entropy": 4.9877295, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:508" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 510, + "EndLine": 510, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "Secret": "8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L510", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:510" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 512, + "EndLine": 512, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "Secret": "8BdXCskcD98NUk9Ciwx6eZqXUD9zB891sSu3rYBSpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L512", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:512" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 514, + "EndLine": 514, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "Secret": "BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L514", + "Entropy": 4.7433004, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:514" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 516, + "EndLine": 516, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 4HBQm2EhdpUWZkTYxttxNDnsoWi5beRAGWHpjVo8pump", + "Secret": "4HBQm2EhdpUWZkTYxttxNDnsoWi5beRAGWHpjVo8pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L516", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:516" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 518, + "EndLine": 518, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5N9mU6xNNtToDtrvMjfFrueExwwZqRdUbqjQwmiKpump", + "Secret": "5N9mU6xNNtToDtrvMjfFrueExwwZqRdUbqjQwmiKpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L518", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:518" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 520, + "EndLine": 520, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump", + "Secret": "AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L520", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:520" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 522, + "EndLine": 522, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump", + "Secret": "AxSMXaM3KeQ3a6HDfGizJaRnzGqrDHJg3uyZbwZUpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "1543eb5edaf626db5a30515065a82b29c07e780b", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/1543eb5edaf626db5a30515065a82b29c07e780b/hasItPumped/backend/api.log#L522", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T07:28:39Z", + "Message": "updating shadow loading", + "Tags": [], + "Fingerprint": "1543eb5edaf626db5a30515065a82b29c07e780b:hasItPumped/backend/api.log:generic-api-key:522" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 5, + "EndLine": 5, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "Secret": "14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L5", + "Entropy": 4.788755, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:5" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 7, + "EndLine": 7, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "Secret": "7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L7", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:7" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 9, + "EndLine": 9, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "Secret": "3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L9", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:9" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 13, + "EndLine": 13, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "Secret": "3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L13", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:13" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 16, + "EndLine": 16, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "Secret": "3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L16", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:16" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 20, + "EndLine": 20, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "Secret": "3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L20", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:20" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 25, + "EndLine": 25, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "Secret": "14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L25", + "Entropy": 4.788755, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:25" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 27, + "EndLine": 27, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "Secret": "7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L27", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:27" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 30, + "EndLine": 30, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: HhVM9vHUxbAiRZ9chEecxhF6UdkzveaCG1NC1C3spump", + "Secret": "HhVM9vHUxbAiRZ9chEecxhF6UdkzveaCG1NC1C3spump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L30", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:30" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 32, + "EndLine": 32, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 6Q8XBjCq1GruUfpVXM5E58Ju55JTKPT6vBQkE5oQpump", + "Secret": "6Q8XBjCq1GruUfpVXM5E58Ju55JTKPT6vBQkE5oQpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L32", + "Entropy": 4.5531974, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:32" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 34, + "EndLine": 34, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Co7gtNVUJjwDw18SKeXdVxaaUSdyT6ZihzgU8wBZpump", + "Secret": "Co7gtNVUJjwDw18SKeXdVxaaUSdyT6ZihzgU8wBZpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L34", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:34" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 36, + "EndLine": 36, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "Secret": "14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L36", + "Entropy": 4.788755, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:36" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 38, + "EndLine": 38, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Co7gtNVUJjwDw18SKeXdVxaaUSdyT6ZihzgU8wBZpump", + "Secret": "Co7gtNVUJjwDw18SKeXdVxaaUSdyT6ZihzgU8wBZpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L38", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:38" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 40, + "EndLine": 40, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "Secret": "7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L40", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:40" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 42, + "EndLine": 42, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "Secret": "14aFmu7R2AH9hDheGfXKj1qJ4mMfEFpqoSyGgMnDpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L42", + "Entropy": 4.788755, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:42" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 44, + "EndLine": 44, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "Secret": "7AJ1KjzjstMnQGzZk1HAKx2atmvvRqWvmRbdYmnviryq", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L44", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:44" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 46, + "EndLine": 46, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L46", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:46" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 48, + "EndLine": 48, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 229vWzBTiUNdraYpVtSH9usTwwVxcyPDbBWf1zEPpump", + "Secret": "229vWzBTiUNdraYpVtSH9usTwwVxcyPDbBWf1zEPpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L48", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:48" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 50, + "EndLine": 50, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 229vWzBTiUNdraYpVtSH9usTwwVxcyPDbBWf1zEPpump", + "Secret": "229vWzBTiUNdraYpVtSH9usTwwVxcyPDbBWf1zEPpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L50", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:50" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 52, + "EndLine": 52, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 229vWzBTiUNdraYpVtSH9usTwwVxcyPDbBWf1zEPpump", + "Secret": "229vWzBTiUNdraYpVtSH9usTwwVxcyPDbBWf1zEPpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L52", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:52" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 54, + "EndLine": 54, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump", + "Secret": "2GmUPhpe93kcTJZrC7NJ2keeDZRT5dBveUgegb13pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L54", + "Entropy": 4.6784196, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:54" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 56, + "EndLine": 56, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 2GPJhV9jNrj7TaLYMRgWkcy6sTKLcwntv7nZ7qDyMRGM", + "Secret": "2GPJhV9jNrj7TaLYMRgWkcy6sTKLcwntv7nZ7qDyMRGM", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L56", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:56" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 58, + "EndLine": 58, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 2G8LH53fcr3aCrEsmAo73eunbZRbyjKrGH5qmur6pump", + "Secret": "2G8LH53fcr3aCrEsmAo73eunbZRbyjKrGH5qmur6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L58", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:58" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 60, + "EndLine": 60, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 2FcsqRrhvgSfYxJWh32xW873vyqBZ9jmMyXqYSPgNtuZ", + "Secret": "2FcsqRrhvgSfYxJWh32xW873vyqBZ9jmMyXqYSPgNtuZ", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L60", + "Entropy": 4.851366, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:60" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 62, + "EndLine": 62, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "Secret": "25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L62", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:62" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 64, + "EndLine": 64, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "Secret": "25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L64", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:64" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 66, + "EndLine": 66, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "Secret": "25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L66", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:66" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 69, + "EndLine": 69, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L69", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:69" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 71, + "EndLine": 71, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L71", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:71" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 73, + "EndLine": 73, + "StartColumn": 43, + "EndColumn": 92, + "Match": "token: WrDYG6miZG2UcXAGN6jQ73ukbigGEHbZovjY7GVpump", + "Secret": "WrDYG6miZG2UcXAGN6jQ73ukbigGEHbZovjY7GVpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L73", + "Entropy": 4.691157, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:73" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 75, + "EndLine": 75, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L75", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:75" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 77, + "EndLine": 77, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8Hg96R1AGDe5vKABwniVPT2LHdhZHmCTFijZAXXZpump", + "Secret": "8Hg96R1AGDe5vKABwniVPT2LHdhZHmCTFijZAXXZpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L77", + "Entropy": 4.907962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:77" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 79, + "EndLine": 79, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 6Q8XBjCq1GruUfpVXM5E58Ju55JTKPT6vBQkE5oQpump", + "Secret": "6Q8XBjCq1GruUfpVXM5E58Ju55JTKPT6vBQkE5oQpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L79", + "Entropy": 4.5531974, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:79" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 81, + "EndLine": 81, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L81", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:81" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 83, + "EndLine": 83, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L83", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:83" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 85, + "EndLine": 85, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L85", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:85" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 87, + "EndLine": 87, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L87", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:87" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 89, + "EndLine": 89, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump", + "Secret": "FWAr6oWa6CHg6WUcXu8CqkmsdbhtEqL8t31QTonppump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L89", + "Entropy": 4.817053, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:89" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 91, + "EndLine": 91, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "Secret": "BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L91", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:91" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 93, + "EndLine": 93, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "Secret": "BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L93", + "Entropy": 4.618078, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:93" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 95, + "EndLine": 95, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "Secret": "BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L95", + "Entropy": 4.618078, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:95" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 97, + "EndLine": 97, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "Secret": "BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L97", + "Entropy": 4.618078, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:97" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 99, + "EndLine": 99, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L99", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:99" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 101, + "EndLine": 101, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "Secret": "25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L101", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:101" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 103, + "EndLine": 103, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "Secret": "25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L103", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:103" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 105, + "EndLine": 105, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "Secret": "25p2BoNp6qrJH5As6ek6H7Ei495oSkyZd3tGb97sqFmH", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L105", + "Entropy": 4.7715983, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:105" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 113, + "EndLine": 113, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L113", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:113" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 115, + "EndLine": 115, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L115", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:115" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 118, + "EndLine": 118, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L118", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:118" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 120, + "EndLine": 120, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L120", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:120" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 123, + "EndLine": 123, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L123", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:123" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 126, + "EndLine": 126, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L126", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:126" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 128, + "EndLine": 128, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L128", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:128" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 132, + "EndLine": 132, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "Secret": "FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L132", + "Entropy": 4.697846, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:132" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 134, + "EndLine": 134, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L134", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:134" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 136, + "EndLine": 136, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "Secret": "526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L136", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:136" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 140, + "EndLine": 140, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "Secret": "526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L140", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:140" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 144, + "EndLine": 144, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "Secret": "526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L144", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:144" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 148, + "EndLine": 148, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "Secret": "526A9a7VDdfr32EDWr3YDFgZk7BA3LjToAKG2WTbpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L148", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:148" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 151, + "EndLine": 151, + "StartColumn": 43, + "EndColumn": 92, + "Match": "token: oR1P5q88dBSbdXiWqiTdaYduiNjD1LamsxBjqZQpump", + "Secret": "oR1P5q88dBSbdXiWqiTdaYduiNjD1LamsxBjqZQpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L151", + "Entropy": 4.646968, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:151" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 153, + "EndLine": 153, + "StartColumn": 43, + "EndColumn": 92, + "Match": "token: oR1P5q88dBSbdXiWqiTdaYduiNjD1LamsxBjqZQpump", + "Secret": "oR1P5q88dBSbdXiWqiTdaYduiNjD1LamsxBjqZQpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L153", + "Entropy": 4.646968, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:153" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 155, + "EndLine": 155, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L155", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:155" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 157, + "EndLine": 157, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L157", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:157" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 159, + "EndLine": 159, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 2LfnTU2Rz19T1PHx1oxk7UcUZ7aRnpVhZ22sgoNRpump", + "Secret": "2LfnTU2Rz19T1PHx1oxk7UcUZ7aRnpVhZ22sgoNRpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L159", + "Entropy": 4.5726237, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:159" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 161, + "EndLine": 161, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L161", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:161" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 163, + "EndLine": 163, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "Secret": "FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L163", + "Entropy": 4.697846, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:163" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 165, + "EndLine": 165, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L165", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:165" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 168, + "EndLine": 168, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L168", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:168" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 170, + "EndLine": 170, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 4w6tKakYwt8ZisntNgJxhc9zipZ1w1ga8LGgjvH2pump", + "Secret": "4w6tKakYwt8ZisntNgJxhc9zipZ1w1ga8LGgjvH2pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L170", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:170" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 172, + "EndLine": 172, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L172", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:172" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 174, + "EndLine": 174, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "Secret": "FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L174", + "Entropy": 4.697846, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:174" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 176, + "EndLine": 176, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "Secret": "BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L176", + "Entropy": 4.618078, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:176" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 178, + "EndLine": 178, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L178", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:178" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 180, + "EndLine": 180, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L180", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:180" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 182, + "EndLine": 182, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "Secret": "J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L182", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:182" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 185, + "EndLine": 185, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "Secret": "J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L185", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:185" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 187, + "EndLine": 187, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L187", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:187" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 190, + "EndLine": 190, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L190", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:190" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 192, + "EndLine": 192, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: HhVM9vHUxbAiRZ9chEecxhF6UdkzveaCG1NC1C3spump", + "Secret": "HhVM9vHUxbAiRZ9chEecxhF6UdkzveaCG1NC1C3spump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L192", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:192" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 194, + "EndLine": 194, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L194", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:194" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 196, + "EndLine": 196, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L196", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:196" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 198, + "EndLine": 198, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L198", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:198" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 200, + "EndLine": 200, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "Secret": "J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L200", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:200" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 202, + "EndLine": 202, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L202", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:202" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 204, + "EndLine": 204, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L204", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:204" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 206, + "EndLine": 206, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "Secret": "FKNfAwb8TmjYkj11V4NiTz4TgrLWTWgm2NRwAD9epump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L206", + "Entropy": 4.697846, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:206" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 208, + "EndLine": 208, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L208", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:208" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 210, + "EndLine": 210, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L210", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:210" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 212, + "EndLine": 212, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L212", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:212" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 214, + "EndLine": 214, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L214", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:214" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 216, + "EndLine": 216, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L216", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:216" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 218, + "EndLine": 218, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L218", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:218" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 220, + "EndLine": 220, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L220", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:220" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 222, + "EndLine": 222, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L222", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:222" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 224, + "EndLine": 224, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L224", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:224" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 226, + "EndLine": 226, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L226", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:226" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 228, + "EndLine": 228, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L228", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:228" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 230, + "EndLine": 230, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L230", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:230" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 232, + "EndLine": 232, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L232", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:232" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 235, + "EndLine": 235, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L235", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:235" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 237, + "EndLine": 237, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "Secret": "J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L237", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:237" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 239, + "EndLine": 239, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L239", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:239" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 242, + "EndLine": 242, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L242", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:242" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 244, + "EndLine": 244, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L244", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:244" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 246, + "EndLine": 246, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L246", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:246" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 248, + "EndLine": 248, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L248", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:248" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 250, + "EndLine": 250, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L250", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:250" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 252, + "EndLine": 252, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L252", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:252" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 254, + "EndLine": 254, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L254", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:254" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 256, + "EndLine": 256, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L256", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:256" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 258, + "EndLine": 258, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L258", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:258" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 260, + "EndLine": 260, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L260", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:260" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 262, + "EndLine": 262, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L262", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:262" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 264, + "EndLine": 264, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L264", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:264" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 266, + "EndLine": 266, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L266", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:266" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 268, + "EndLine": 268, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L268", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:268" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 270, + "EndLine": 270, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "Secret": "BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L270", + "Entropy": 4.618078, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:270" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 272, + "EndLine": 272, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "Secret": "J1Wpmugrooj1yMyQKrdZ2vwRXG5rhfx3vTnYE39gpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L272", + "Entropy": 4.879664, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:272" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 274, + "EndLine": 274, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "Secret": "BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L274", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:274" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 276, + "EndLine": 276, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Cmt6QFnpJnQDJuY7bE3ThaMDvaExPmoSHfEJE8BDpump", + "Secret": "Cmt6QFnpJnQDJuY7bE3ThaMDvaExPmoSHfEJE8BDpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L276", + "Entropy": 4.6635327, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:276" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 278, + "EndLine": 278, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L278", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:278" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 280, + "EndLine": 280, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L280", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:280" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 282, + "EndLine": 282, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L282", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:282" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 284, + "EndLine": 284, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L284", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:284" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 286, + "EndLine": 286, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L286", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:286" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 288, + "EndLine": 288, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L288", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:288" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 290, + "EndLine": 290, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "Secret": "C3DwDjT17gDvvCYC2nsdGHxDHVmQRdhKfpAdqQ29pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L290", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:290" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 292, + "EndLine": 292, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "Secret": "CboMcTUYUcy9E6B3yGdFn6aEsGUnYV6yWeoeukw6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L292", + "Entropy": 4.6523914, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:292" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 294, + "EndLine": 294, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Cmt6QFnpJnQDJuY7bE3ThaMDvaExPmoSHfEJE8BDpump", + "Secret": "Cmt6QFnpJnQDJuY7bE3ThaMDvaExPmoSHfEJE8BDpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L294", + "Entropy": 4.6635327, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:294" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 296, + "EndLine": 296, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L296", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:296" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 298, + "EndLine": 298, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L298", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:298" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 300, + "EndLine": 300, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L300", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:300" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 302, + "EndLine": 302, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L302", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:302" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 304, + "EndLine": 304, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ce2gx9KGXJ6C9Mp5b5x1sn9Mg87JwEbrQby4Zqo3pump", + "Secret": "Ce2gx9KGXJ6C9Mp5b5x1sn9Mg87JwEbrQby4Zqo3pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L304", + "Entropy": 4.8625073, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:304" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 306, + "EndLine": 306, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: DitHyRMQiSDhn5cnKMJV2CDDt6sVct96YrECiM49pump", + "Secret": "DitHyRMQiSDhn5cnKMJV2CDDt6sVct96YrECiM49pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L306", + "Entropy": 4.635235, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:306" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 308, + "EndLine": 308, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L308", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:308" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 310, + "EndLine": 310, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "Secret": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L310", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:310" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 312, + "EndLine": 312, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L312", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:312" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 314, + "EndLine": 314, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L314", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:314" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 316, + "EndLine": 316, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L316", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:316" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 318, + "EndLine": 318, + "StartColumn": 43, + "EndColumn": 94, + "Match": "token: 8sv4W4uQ9qML87Kar2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kar2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L318", + "Entropy": 4.986189, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:318" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 320, + "EndLine": 320, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 7GcHce9dbYNj84Rri6LCi9fJAJ39VCCxqy89oL18pump", + "Secret": "7GcHce9dbYNj84Rri6LCi9fJAJ39VCCxqy89oL18pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L320", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:320" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 322, + "EndLine": 322, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L322", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:322" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 324, + "EndLine": 324, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L324", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:324" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 326, + "EndLine": 326, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L326", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:326" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 328, + "EndLine": 328, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L328", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:328" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 330, + "EndLine": 330, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L330", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:330" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 332, + "EndLine": 332, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L332", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:332" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 334, + "EndLine": 334, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L334", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:334" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 336, + "EndLine": 336, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L336", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:336" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 338, + "EndLine": 338, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L338", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:338" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 340, + "EndLine": 340, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L340", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:340" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 342, + "EndLine": 342, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L342", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:342" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 344, + "EndLine": 344, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "Secret": "8sv4W4uQ9qML87Kr2XFkYBDwsiFEJVZZ1ScsM71Hpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L344", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:344" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 346, + "EndLine": 346, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "Secret": "Ai3eKAWjzKMV8wRwd41nVP83yqfbAVJykhvJVPxspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L346", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:346" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 348, + "EndLine": 348, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L348", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:348" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 350, + "EndLine": 350, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L350", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:350" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 352, + "EndLine": 352, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "Secret": "BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L352", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:352" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 354, + "EndLine": 354, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L354", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:354" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 361, + "EndLine": 361, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "Secret": "5iVmFCCwJTuuw7p4FrxYoZ1bUNdjg14j7uv5hMsMpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L361", + "Entropy": 4.7150025, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:361" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 363, + "EndLine": 363, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L363", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:363" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 365, + "EndLine": 365, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L365", + "Entropy": 4.598652, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:365" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 367, + "EndLine": 367, + "StartColumn": 43, + "EndColumn": 99, + "Match": "token: A8C3xuqscfmyLrte3V124132mTqrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3V124132mTqrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L367", + "Entropy": 4.751272, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:367" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 369, + "EndLine": 369, + "StartColumn": 43, + "EndColumn": 105, + "Match": "token: A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L369", + "Entropy": 4.673713, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:369" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 371, + "EndLine": 371, + "StartColumn": 43, + "EndColumn": 105, + "Match": "token: A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L371", + "Entropy": 4.673713, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:371" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 373, + "EndLine": 373, + "StartColumn": 43, + "EndColumn": 105, + "Match": "token: A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L373", + "Entropy": 4.673713, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:373" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 375, + "EndLine": 375, + "StartColumn": 43, + "EndColumn": 105, + "Match": "token: A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "Secret": "A8C3xuqscfmyLrte3V124132mT123123qrAq8kgMASius9AFNANwpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L375", + "Entropy": 4.673713, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:375" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 383, + "EndLine": 383, + "StartColumn": 43, + "EndColumn": 63, + "Match": "token: 12l3miorfnwedf", + "Secret": "12l3miorfnwedf", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L383", + "Entropy": 3.6644979, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:383" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 391, + "EndLine": 391, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L391", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:391" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 393, + "EndLine": 393, + "StartColumn": 43, + "EndColumn": 99, + "Match": "token: 5RRV6yHhNFDasdasdFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDasdasdFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L393", + "Entropy": 4.9736605, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:393" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 395, + "EndLine": 395, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "Secret": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L395", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:395" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 397, + "EndLine": 397, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L397", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:397" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 399, + "EndLine": 399, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L399", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:399" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 402, + "EndLine": 402, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L402", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:402" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 404, + "EndLine": 404, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L404", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:404" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 406, + "EndLine": 406, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L406", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:406" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 408, + "EndLine": 408, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L408", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:408" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 410, + "EndLine": 410, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L410", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:410" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 412, + "EndLine": 412, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L412", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:412" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 414, + "EndLine": 414, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L414", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:414" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 416, + "EndLine": 416, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L416", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:416" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 418, + "EndLine": 418, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L418", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:418" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 420, + "EndLine": 420, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L420", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:420" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 422, + "EndLine": 422, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L422", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:422" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 425, + "EndLine": 425, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L425", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:425" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 427, + "EndLine": 427, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "Secret": "5RRV6yHhNFDFYvA3aZnXLx1Hu8BzoLyvgcFceKD6pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L427", + "Entropy": 4.8968205, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:427" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 429, + "EndLine": 429, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "Secret": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L429", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:429" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 431, + "EndLine": 431, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "Secret": "BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L431", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:431" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 433, + "EndLine": 433, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "Secret": "BQX1cjcRHXmrqNtoFWwmE5bZj7RPneTmqXB979b2pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L433", + "Entropy": 4.760457, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:433" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 435, + "EndLine": 435, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 34DKLHHEdD55oz8ozFzoBfpMSyYhPSZjhZJHkdEspump", + "Secret": "34DKLHHEdD55oz8ozFzoBfpMSyYhPSZjhZJHkdEspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L435", + "Entropy": 4.708987, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:435" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 437, + "EndLine": 437, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 34DKLHHEdD55oz8ozFzoBfpMSyYhPSZjhZJHkdEspump", + "Secret": "34DKLHHEdD55oz8ozFzoBfpMSyYhPSZjhZJHkdEspump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L437", + "Entropy": 4.708987, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:437" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 439, + "EndLine": 439, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "Secret": "BKzBdMEPfjyu9qNNjnhSbbkf2n14hcymQkmuwkfdpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L439", + "Entropy": 4.618078, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:439" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 441, + "EndLine": 441, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L441", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:441" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 444, + "EndLine": 444, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8h3jsXbvBRPKGGRPhoYRHr7ca8qH3tBeaE2S93X1pump", + "Secret": "8h3jsXbvBRPKGGRPhoYRHr7ca8qH3tBeaE2S93X1pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L444", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:444" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 446, + "EndLine": 446, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: GMzuntWYJLpNuCizrSR7ZXggiMdDzTNiEmSNHHunpump", + "Secret": "GMzuntWYJLpNuCizrSR7ZXggiMdDzTNiEmSNHHunpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L446", + "Entropy": 4.5726237, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:446" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 448, + "EndLine": 448, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: GMzuntWYJLpNuCizrSR7ZXggiMdDzTNiEmSNHHunpump", + "Secret": "GMzuntWYJLpNuCizrSR7ZXggiMdDzTNiEmSNHHunpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L448", + "Entropy": 4.5726237, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:448" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 452, + "EndLine": 452, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "Secret": "9BB6NFEcjBCtnNLFko2FqVQBq8HHM13kCyYcdQbgpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L452", + "Entropy": 4.8059115, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:452" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 459, + "EndLine": 459, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L459", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:459" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 461, + "EndLine": 461, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "Secret": "3ZosKPe3FoaJsjHLPBejf5d8PizSFTorStj4gmJs7Dk9", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L461", + "Entropy": 4.7998962, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:461" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 463, + "EndLine": 463, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 6Q8XBjCq1GruUfpVXM5E58Ju55JTKPT6vBQkE5oQpump", + "Secret": "6Q8XBjCq1GruUfpVXM5E58Ju55JTKPT6vBQkE5oQpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L463", + "Entropy": 4.5531974, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:463" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 465, + "EndLine": 465, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "Secret": "8ncucXv6U6epZKHPbgaEBcEK399TpHGKCquSt4RnmX4f", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L465", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:465" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 467, + "EndLine": 467, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: GMzuntWYJLpNuCizrSR7ZXggiMdDzTNiEmSNHHunpump", + "Secret": "GMzuntWYJLpNuCizrSR7ZXggiMdDzTNiEmSNHHunpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L467", + "Entropy": 4.5726237, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:467" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 469, + "EndLine": 469, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM", + "Secret": "5voS9evDjxF589WuEub5i4ti7FWQmZCsAsyD5ucbuRqM", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L469", + "Entropy": 4.7321587, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:469" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 471, + "EndLine": 471, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump", + "Secret": "CNvitvFnSM5ed6K28RUNSaAjqqz5tX1rA5HgaBN9pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L471", + "Entropy": 4.9251184, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:471" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 473, + "EndLine": 473, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump", + "Secret": "EsP4kJfKUDLfX274WoBSiiEy74Sh4tZKUCDjfULHpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L473", + "Entropy": 4.697846, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:473" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 475, + "EndLine": 475, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 4HBQm2EhdpUWZkTYxttxNDnsoWi5beRAGWHpjVo8pump", + "Secret": "4HBQm2EhdpUWZkTYxttxNDnsoWi5beRAGWHpjVo8pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L475", + "Entropy": 4.942275, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:475" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 477, + "EndLine": 477, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "Secret": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L477", + "Entropy": 4.9251184, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:477" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 479, + "EndLine": 479, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "Secret": "BLDiYcvm3CLcgZ7XUBPgz6idSAkNmWY6MBbm8Xpjpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L479", + "Entropy": 4.7433004, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:479" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 481, + "EndLine": 481, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 8h3jsXbvBRPKGGRPhoYRHr7ca8qH3tBeaE2S93X1pump", + "Secret": "8h3jsXbvBRPKGGRPhoYRHr7ca8qH3tBeaE2S93X1pump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L481", + "Entropy": 4.8342094, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:481" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 483, + "EndLine": 483, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L483", + "Entropy": 4.737285, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:483" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 485, + "EndLine": 485, + "StartColumn": 43, + "EndColumn": 138, + "Match": "token: 38PgzpJYu2HkiYvV8qePFakB8tuobPaBQQzEvYT4knThhkSPBvSKBLg1LEczisWLhx5ydJipumpdGm2FFEn7Dpump", + "Secret": "38PgzpJYu2HkiYvV8qePFakB8tuobPaBQQzEvYT4knThhkSPBvSKBLg1LEczisWLhx5ydJipumpdGm2FFEn7Dpump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L485", + "Entropy": 5.2492332, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:485" + }, + { + "RuleID": "generic-api-key", + "Description": "Detected a Generic API Key, potentially exposing access to various services and sensitive operations.", + "StartLine": 487, + "EndLine": 487, + "StartColumn": 43, + "EndColumn": 93, + "Match": "token: BQQzEvYT4knThhkSPBvSKBLg1LEczisWLhx5ydJipump", + "Secret": "BQQzEvYT4knThhkSPBvSKBLg1LEczisWLhx5ydJipump", + "File": "hasItPumped/backend/api.log", + "SymlinkFile": "", + "Commit": "44d9116efb16bd8010e4f12e61a30fde68482d2a", + "Link": "https://github.com/carter293/fraudbuster-rug-pull-detector/blob/44d9116efb16bd8010e4f12e61a30fde68482d2a/hasItPumped/backend/api.log#L487", + "Entropy": 4.726144, + "Author": "Matthew Carter", + "Email": "matthewcarter2301@gmail.com", + "Date": "2025-05-07T04:41:38Z", + "Message": "init", + "Tags": [], + "Fingerprint": "44d9116efb16bd8010e4f12e61a30fde68482d2a:hasItPumped/backend/api.log:generic-api-key:487" + } +]