
Research
/Security News
11 Malicious Go Packages Distribute Obfuscated Remote Payloads
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
This plugin implements a profiler for buildbot master.
installation:
.. code:: bash
pip install buildbot_profiler
then in master.cfg:
.. code:: python
c['www']['plugins']['profiler'] = True
Alternatively, you can install it in service mode, without the UI
.. code:: python
c['services'] = [util.ProfilerService()]
ProfilerService takes following arguments:
.. code:: python
ProfilerService(frequency=100, gatherperiod=30 * 60, mode='virtual', basepath=None, wantBuilds=100)
frequency
: the profiling frequency in HZ. Not that if there is no activity during a profiling timer, no data will be recorded.
gatherperiod
: the period during which the profiler works on one file. By default a new json file is created every 30min with the profile of the last 30min. Note that if there is no activity the gather period might be longer.
mode
: profiling timer to use. Can be:
prof
: use SIG_PROF
timer,virtual
: use SIGVTALRM
timer,real
: use SIGALRM
timer,basepath
: the base path where to store the json files. (defaults to (master's basedir)/prof_
)
wantBuilds
: if this is > 0 then the last N builds are stored along side the profile data, for debug purpose.
A standalone viewer is provided for offline browse of user submitted profiles.
.. code:: bash
bbprofiler
Then you can open your browser on http://localhost:8080
.. image:: https://raw.githubusercontent.com/tardyp/buildbot_profiler/master/screenshot.png
FAQs
"Profiler for buildbot master and its UI"
We found that buildbot-profiler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).