07a2f56d71
SparkLabs Forum https://www.sparklabs.com/forum/ Password caching https://www.sparklabs.com/forum/viewtopic.php?t=3215 Page 1 of 1 Password caching Posted: Tue May 16, 2023 10:20 pm by Shabang I'm testing setting "defaults write com.viscosityvpn.Viscosity KeyChainSupport -bool false" for Viscosity and "auth-nocache" in the connection config. Then after waiting for the renegotiation to kick in, I'm seeing a credential prompt with the password field still filled in. Pressing enter is the only thing required to continue the connection. I would think most people setting those two options would want to require the user to actually enter the password again. Does it work like this intentionally, am I missing something? Re: Password caching Posted: Wed May 17, 2023 8:50 am by James Hi Shabang, Thanks for the report, it appears you've discovered a regression in a recent update. It appears that in some conditions Viscosity may still load existing saved login details from the Keychain even with the KeyChainSupport setting disabled. This should now be fixed in the latest beta version: https://www.sparklabs.com/support/kb/ar ... -versions/ It likely hasn't been discovered until now as saving to the Keychain is still correctly disabled. So you'll only encounter it if the login details have already been saved to the Keychain prior to changing the setting. Cheers, James Re: Password caching Posted: Wed May 17, 2023 6:29 pm by Shabang Ok, thanks for confirming. Although looks like I didn't have any saved credentials in my keychain for Viscosity. I'm testing now with the new beta. I think it would also be a nice feature to have the ability to allow saving the p12 file password, but not the user credentials. That way an encrypted file could be distributed to the user, who then could save the file password in the keychain, but they would still be prevented saving their own username and password. Re: Password caching Posted: Wed May 17, 2023 6:46 pm by Shabang I confirmed it in Catalina and Ventura, I'm still seeing the password field filled even without previous credentials in the keychain. All times are UTC+10:00 Page 1 of 1 Powered by phpBB® Forum Software © phpBB Limited https://www.phpbb.com/ |
||
---|---|---|
.github | ||
data | ||
doc | ||
extra | ||
lib | ||
plugins | ||
tamper | ||
thirdparty | ||
.gitattributes | ||
.gitignore | ||
.pylintrc | ||
LICENSE | ||
README.md | ||
sqlmap.conf | ||
sqlmap.py | ||
sqlmapapi.py | ||
sqlmapapi.yaml |
sqlmap
sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. It comes with a powerful detection engine, many niche features for the ultimate penetration tester, and a broad range of switches including database fingerprinting, over data fetching from the database, accessing the underlying file system, and executing commands on the operating system via out-of-band connections.
Screenshots
You can visit the collection of screenshots demonstrating some of the features on the wiki.
Installation
You can download the latest tarball by clicking here or latest zipball by clicking here.
Preferably, you can download sqlmap by cloning the Git repository:
git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev
sqlmap works out of the box with Python version 2.6, 2.7 and 3.x on any platform.
Usage
To get a list of basic options and switches use:
python sqlmap.py -h
To get a list of all options and switches use:
python sqlmap.py -hh
You can find a sample run here. To get an overview of sqlmap capabilities, a list of supported features, and a description of all options and switches, along with examples, you are advised to consult the user's manual.
Links
- Homepage: https://sqlmap.org
- Download: .tar.gz or .zip
- Commits RSS feed: https://github.com/sqlmapproject/sqlmap/commits/master.atom
- Issue tracker: https://github.com/sqlmapproject/sqlmap/issues
- User's manual: https://github.com/sqlmapproject/sqlmap/wiki
- Frequently Asked Questions (FAQ): https://github.com/sqlmapproject/sqlmap/wiki/FAQ
- Twitter: @sqlmap
- Demos: https://www.youtube.com/user/inquisb/videos
- Screenshots: https://github.com/sqlmapproject/sqlmap/wiki/Screenshots