
Security News
AI Slop Is Polluting Bug Bounty Platforms with Fake Vulnerability Reports
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.
cloudflash-ffproxy
Advanced tools
cloudflash-ffproxy module implements ffproxy configuration on cloudflash enabled devices
Verb | URI | Description |
---|---|---|
POST | /ffproxy/policy | To create ffproxy policy configuration |
GET | /ffproxy/policy | List summary of ffproxy policy configuration |
GET | /ffproxy/policy/:id | List summary of ffproxy policy configuration by ID |
PUT | /ffproxy/policy/:id | Update existing ffproxy policy configuration in VCG/CPEs by ID |
DELETE | /ffproxy/policy/:id | To delete existing ffproxy policy configuration by ID |
POST | /ffproxy/categories | To create ffproxy categories configuration |
GET | /ffproxy/categories | List summary of ffproxy categories configuration |
GET | /ffproxy/categories/:id | List summary of ffproxy categories configuration by ID |
PUT | /ffproxy/categories/:id | Update existing ffproxy categories configuration in VCG/CPEs by ID |
DELETE | /ffproxy/categories/:id | To delete existing ffproxy categories configuration by ID |
POST | /ffproxy/safesearch | To create safesearch configuration |
GET | /ffproxy/safesearch | List summary of safesearch configuration |
GET | /ffproxy/safesearch/:id | List summary of safesearch configuration by ID |
PUT | /ffproxy/safesearch/:id | Update existing safesearch configuration in VCG/CPEs by ID |
DELETE | /ffproxy/safesearch/:id | To delete existing safesearch configuration by ID |
POST | /ffproxy/policyexceptions | To create exception configuration |
GET | /ffproxy/policyexceptions | List summary of exception configuration |
GET | /ffproxy/policyexceptions/:id | List summary of exception configuration by ID |
PUT | /ffproxy/policyexceptions/:id | Update existing exception configuration in VCG/CPEs by ID |
DELETE | /ffproxy/policyexceptions/:id | To delete existing exception configuration by ID |
Verb URI Description
POST /ffproxy/policy Create ffproxy policy configuration.
On success it returns JSON data with the UUID for the ffproxy policy created configuration.
Example Request and Response
{
"policy": [
{
"enable": true,
"name": "policy name",
"allowList": [
1,
2,
3
],
"blockedList": [
4,
5
],
"net": [
{
"network": "10.1.10.1",
"netmask": 32
},
{
"network": "10.1.10.3",
"netmask": 32
}
]
},
{
"enable": true,
"name": "policy name 2",
"allowList": [
4,
5
],
"blockedList": [
6,
7
],
"net": [
{
"network": "10.1.10.2",
"netmask": 32
}
]
}
]
}
{
"policy":
[
{
"enable": true,
"name": "policy name",
"allowList":
[
1,
2,
3
],
"blockedList":
[
4,
5
],
"net":
[
{
"network": "10.1.10.1",
"netmask": 32
},
{
"network": "10.1.10.3",
"netmask": 32
}
]
},
{
"enable": true,
"name": "policy name 2",
"allowList":
[
4,
5
],
"blockedList":
[
6,
7
],
"net":
[
{
"network": "10.1.10.2",
"netmask": 32
}
]
}
],
"id": "89a81ef3-99bf-4a60-b9c8-f7abfa7cc428"
}
Verb URI Description
GET /ffproxy/policy List summary of ffproxy policy configuration.
Example Request and Response
Response
[
{
"policy":
[
{
"enable": true,
"name": "policy name",
"allowList":
[
1,
2,
3
],
"blockedList":
[
4,
5
],
"net":
[
{
"network": "10.1.10.1",
"netmask": 32
},
{
"network": "10.1.10.3",
"netmask": 32
}
]
},
{
"enable": true,
"name": "policy name 2",
"allowList":
[
4,
5
],
"blockedList":
[
6,
7
],
"net":
[
{
"network": "10.1.10.2",
"netmask": 32
}
]
}
],
"id": "89a81ef3-99bf-4a60-b9c8-f7abfa7cc428"
}
]
Verb URI Description
GET /ffproxy/policy/:id List summary of ffproxy policy configured by ID.
Example Request and Response
Response
{
"policy":
[
{
"enable": true,
"name": "policy name",
"allowList":
[
1,
2,
3
],
"blockedList":
[
4,
5
],
"net":
[
{
"network": "10.1.10.1",
"netmask": 32
},
{
"network": "10.1.10.3",
"netmask": 32
}
]
},
{
"enable": true,
"name": "policy name 2",
"allowList":
[
4,
5
],
"blockedList":
[
6,
7
],
"net":
[
{
"network": "10.1.10.2",
"netmask": 32
}
]
}
],
"id": "89a81ef3-99bf-4a60-b9c8-f7abfa7cc428"
}
Verb URI Description
PUT /ffproxy/policy/:id update ffproxy policy configuration by ID.
On success it returns JSON data with the UUID for the ffproxy policy created configuration.
Example Request and Response
{
"policy": [
{
"enable": true,
"name": "policy name1",
"allowList": [
1,
2,
3
],
"blockedList": [
4,
5
],
"net": [
{
"network": "10.1.10.1",
"netmask": 32
},
{
"network": "10.1.10.3",
"netmask": 32
}
]
},
{
"enable": true,
"name": "policy name 2",
"allowList": [
4,
5
],
"blockedList": [
6,
7
],
"net": [
{
"network": "10.1.10.2",
"netmask": 32
}
]
}
]
}
{
"policy":
[
{
"enable": true,
"name": "policy name1",
"allowList":
[
1,
2,
3
],
"blockedList":
[
4,
5
],
"net":
[
{
"network": "10.1.10.1",
"netmask": 32
},
{
"network": "10.1.10.3",
"netmask": 32
}
]
},
{
"enable": true,
"name": "policy name 2",
"allowList":
[
4,
5
],
"blockedList":
[
6,
7
],
"net":
[
{
"network": "10.1.10.2",
"netmask": 32
}
]
}
],
"id": "89a81ef3-99bf-4a60-b9c8-f7abfa7cc428"
}
Verb URI Description
DELETE /ffproxy/policy/:id Delete existing ffproxy policy configuration by ID.
Example Request and Response
DELETE /ffproxy/policy/d8fc22ff-3024-4937-bf18-cfbca8010e34
Status Code : 204
Verb URI Description
POST /ffproxy/categories Create ffproxy categories configuration.
On success it returns JSON data with the UUID for the ffproxy categories created configuration.
Example Request and Response
{
"categories": [
{
"categoryNumber": 42,
"name": "test",
"description": "test desc",
"urls": [
"test",
"test1"
],
"custom": true
},
{
"categoryNumber": 43,
"name": "test",
"description": "test desc",
"urls": [
"test",
"test1"
],
"custom": true
}
]
}
{
"categories":
[
{
"categoryNumber": 42,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
},
{
"categoryNumber": 43,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
}
],
"id": "afbdb284-a18a-41b9-b057-b641fd5d108c"
}
Verb URI Description
GET /ffproxy/categories List summary of ffproxy categories configuration.
Example Request and Response
Response
[
{
"categories":
[
{
"categoryNumber": 42,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
},
{
"categoryNumber": 43,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
}
],
"id": "afbdb284-a18a-41b9-b057-b641fd5d108c"
}
]
Verb URI Description
GET /ffproxy/categories/:id List summary of ffproxy categories configured by ID.
Example Request and Response
Response
{
"categories":
[
{
"categoryNumber": 42,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
},
{
"categoryNumber": 43,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
}
],
"id": "afbdb284-a18a-41b9-b057-b641fd5d108c"
}
Verb URI Description
PUT /ffproxy/categories/:id update ffproxy categories configuration by ID.
On success it returns JSON data with the UUID for the ffproxy categories created configuration.
Example Request and Response
{
"categories": [
{
"categoryNumber": 42,
"name": "test",
"description": "test desc updated",
"urls": [
"test",
"test1"
],
"custom": true
},
{
"categoryNumber": 43,
"name": "test",
"description": "test desc",
"urls": [
"test",
"test1"
],
"custom": true
}
]
}
{
"categories":
[
{
"categoryNumber": 42,
"name": "test",
"description": "test desc updated",
"urls":
[
"test",
"test1"
],
"custom": true
},
{
"categoryNumber": 43,
"name": "test",
"description": "test desc",
"urls":
[
"test",
"test1"
],
"custom": true
}
],
"id": "afbdb284-a18a-41b9-b057-b641fd5d108c"
}
Verb URI Description
DELETE /ffproxy/categories/:id Delete existing ffproxy categories configuration by ID.
Example Request and Response
DELETE /ffproxy/categories/488ef428-a495-4eac-817f-37d0f2bac363
Status Code : 204
Verb URI Description
POST /ffproxy/safesearch safesearch configuration.
On success it returns JSON data with the UUID for the safesearch created configuration.
Example Request and Response
{
"safesearch":
{
"enable": false
}
}
{
"safesearch":
{
"enable": false
},
"id": "3cef41a7-f960-465f-8fb0-9c724ed43fa1"
}
GET List
Verb URI Description
GET /ffproxy/safesearch List summary of safesearch configured.
Example Request and Response
[
{
"safesearch":
{
"enable": false
},
"id": "3cef41a7-f960-465f-8fb0-9c724ed43fa1"
}
]
GET by ID:
Verb URI Description
GET /ffproxy/safesearch/:id List summary of safesearch configured by ID.
Example Request and Response
{
"safesearch":
{
"enable": false
},
"id": "3cef41a7-f960-465f-8fb0-9c724ed43fa1"
}
PUT API
Verb URI Description
PUT /ffproxy/safesearch/:id Update safesearch configuration.
Example Request and Response
{
"safesearch":
{
"enable": true
}
}
{
"safesearch":
{
"enable": true
},
"id": "3cef41a7-f960-465f-8fb0-9c724ed43fa1"
}
Verb URI Description
DELETE /ffproxy/safesearch/:id Delete existing safesearch configuration by ID.
Example Request and Response
DELETE /ffproxy/safesearch/265875ff-643f-47b8-bd1c-23b35e5bda8e
Status Code : 204
Verb URI Description
POST /ffproxy/policyexceptions exceptions configuration.
On success it returns JSON data with the UUID for the exceptions created configuration.
Example Request and Response
{
"policyexceptions": [
{
"name": "Default Policy exceptions",
"custom": false,
"whitelist": [
"test1",
"test2"
],
"net": [
{
"network": "0.0.0.0",
"netmask": 0
}
]
},
{
"name": "Default Policy exceptions",
"custom": false,
"blacklist": [
"test3",
"test4"
],
"net": [
{
"network": "0.0.0.0",
"netmask": 0
}
]
}
]
}
{
"policyexceptions":
[
{
"name": "Default Policy exceptions",
"custom": false,
"whitelist":
[
"test1",
"test2"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
},
{
"name": "Default Policy exceptions",
"custom": false,
"blacklist":
[
"test3",
"test4"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
}
],
"id": "6efee6eb-cfc2-4465-b2b7-999316d1af1e"
}
GET List
Verb URI Description
GET /ffproxy/policyexceptions List summary of exceptions configured.
Example Request and Response
[
{
"policyexceptions":
[
{
"name": "Default Policy exceptions",
"custom": false,
"whitelist":
[
"test1",
"test2"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
},
{
"name": "Default Policy exceptions",
"custom": false,
"blacklist":
[
"test3",
"test4"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
}
],
"id": "6efee6eb-cfc2-4465-b2b7-999316d1af1e"
}
]
GET by ID:
Verb URI Description
GET /ffproxy/policyexceptions/:id List summary of exception configured by ID.
Example Request and Response
{
"policyexceptions":
[
{
"name": "Default Policy exceptions",
"custom": false,
"whitelist":
[
"test1",
"test2"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
},
{
"name": "Default Policy exceptions",
"custom": false,
"blacklist":
[
"test3",
"test4"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
}
],
"id": "6efee6eb-cfc2-4465-b2b7-999316d1af1e"
}
PUT API
Verb URI Description
PUT /ffproxy/policyexceptions/:id Update exception configuration.
Example Request and Response
{
"policyexceptions": [
{
"name": "Default Policy exceptions",
"custom": false,
"whitelist": [
"test11",
"test21"
],
"net": [
{
"network": "0.0.0.0",
"netmask": 0
}
]
},
{
"name": "Default Policy exceptions",
"custom": false,
"blacklist": [
"test31",
"test41"
],
"net": [
{
"network": "0.0.0.0",
"netmask": 0
}
]
}
]
}
{
"policyexceptions":
[
{
"name": "Default Policy exceptions",
"custom": false,
"whitelist":
[
"test11",
"test21"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
},
{
"name": "Default Policy exceptions",
"custom": false,
"blacklist":
[
"test31",
"test41"
],
"net":
[
{
"network": "0.0.0.0",
"netmask": 0
}
]
}
],
"id": "6efee6eb-cfc2-4465-b2b7-999316d1af1e"
}
Verb URI Description
DELETE /ffproxy/policyexceptions/:id Delete existing exception configuration by ID.
Example Request and Response
DELETE /ffproxy/policyexceptions/6efee6eb-cfc2-4465-b2b7-999316d1af1e
Status Code : 204
FAQs
cloudflash-ffproxy module implements ffproxy configuration on cloudflash enabled devices
We found that cloudflash-ffproxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.
Research
Security News
The Socket Research team investigates a malicious Python package disguised as a Discord error logger that executes remote commands and exfiltrates data via a covert C2 channel.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.