
Modular credential validation framework with active and passive (regex-based) checking modes for penetration testers. Supports multiple services via dynamic API testing and library integration.
pre-requisite 3.6+
python main.py --service stripe --token sk_live_r3s7_0f_7h3_d37ails
from credcheck.core.cred_check_active import DynamicTest
from credcheck.core.cred_check_utils import CredUtils
service = 'stripe'
credentials = {'TOKEN':'sk_live_r3s7_0f_7h3_d37ails'}
stripCred = DynamicTest()
stripCred.check_it(service, credentials)
Install all dependency via
pip install -r requirements.txt
Licensed under the MIT, see LICENSE for more information.