惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Runninig a forkbomb in Jenkins
moonlitpath · 2026-05-25 · via DEV Community

Did you think this was the end of my forkbomb chronicles, lol? Of course not!

Of course I had to come with a part 3!

Basically, part infinity of me being bored in college, and doing random sh!t to pass time.

⚠️ Warning: THIS IS JUST A JOKE. DO NOT DO THIS IN PROFESSIONAL CONTEXTS. It can quite literally crash the system.

We had a course called Devops Lab, where Jenkins was a major part of a syllabus. After finishing the activity in a few minutes I had a lot of time to play around in the 2 hour lab.
(This experiment was performed around mid March, and was sitting in my unposted Drafts)

At that time, I'd been experimenting with forkbombs in my own laptop. Of course I had to try if I can run a forkbomb within jenkins. And see what happens.

So, here I am.

Jenkins is an open-source automation server primarily used for CI/CD (Continuous Integration and Continuous Delivery). In plain terms: every time a developer pushes code, Jenkins can automatically pull it, build it, run tests, and deploy it. It does this by running pipelines, sequences of steps defined either in a Jenkinsfile or through the UI. Each step can execute shell commands on the machine Jenkins is running on (or on connected agents).

In our Devops Lab, we were using it to build and test simple Java projects. My jenkins was configured to run inside Docker containers, mostly because I had severely low storage left on my laptop, and I wanted to save data, and I like Docker, it's easy to manage apps in docker.

In Jenkins, you can add a build step called "Execute shell", it literally just runs a bash script on the host (or container). I created a new freestyle project, named it something innocent, went to Build Steps → Add build step → Execute shell, and pasted the script in. One click on "Build Now" and we were off to the races.

#!/bin/bash
# ============================================================
# FORKBOMB — JENKINS EDITION
# For educational purposes only. 
# ============================================================

# --- SAFETY NET ---
# ulimit -u sets RLIMIT_NPROC — enforced by the kernel in
# copy_process() inside kernel/fork.c. When your UID's process
# count hits this ceiling, fork() returns EAGAIN. Bash then
# prints "retry: Resource temporarily unavailable" a few times
# before finally giving up with "Resource temporarily unavailable".
ulimit -u 50

# --- HIDE FROM THE JENKINS PROCESS REAPER ---
# Jenkins tracks child processes via their process group and
# an env variable called JENKINS_NODE_COOKIE (BUILD_ID is the
# older alias). After a build finishes, Jenkins walks the
# process table and kills anything with a matching cookie.
# Setting it to an arbitrary value orphans the processes from
# Jenkins' tracking.
export BUILD_ID=dontKillMe


# Defining the bomb
# (Jenkins' script parser choked on the classic :(){ :|:& };: syntax,
# so the named-function form was used instead)
bomb() {
  bomb | bomb &
}

# Light the fuse
bomb   

# keep the main process active so we can see the fireworks in the log
sleep 10

Enter fullscreen mode Exit fullscreen mode


The output

The script runs as the Jenkins system user inside /tmp, Jenkins writes it to a randomly named temp file (you can see the path in the output: /tmp/jenkins13172110508468162848.sh) and executes it directly with /bin/bash.

Started by user [anu](http://localhost:8080/user/anu)
Running as SYSTEM
Building in workspace /var/jenkins_home/workspace/forkbomb
[forkbomb] $ /bin/bash /tmp/jenkins13172110508468162848.sh
/tmp/jenkins13172110508468162848.sh: fork: retry: Resource temporarily unavailable
/tmp/jenkins13172110508468162848.sh: fork: retry: Resource temporarily unavailable
/tmp/jenkins13172110508468162848.sh: fork: retry: Resource temporarily unavailable
/tmp/jenkins13172110508468162848.sh: fork: retry: Resource temporarily unavailable

/tmp/jenkins13172110508468162848.sh: fork: Resource temporarily unavailable
Build step 'Execute shell' marked build as failure
Finished: FAILURE

Enter fullscreen mode Exit fullscreen mode

slayy!! it ran for 10 secs!!! yayayayayay

Resource temporarily unavailable means that ulimit -u 50 did its job and defused the bomb.

Anyways! I found this experiment really fun.