summary refs log blame commit diff
path: root/pkgs/development/tools/misc/one_gadget/default.nix
blob: 1c2cbe35439d44143f440227027ed58b4392d345 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         





                          

                                                           



                                                                          
                                                              


                                 
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "one_gadget";
  gemdir = ./.;
  exes = [ "one_gadget" ];

  passthru.updateScript = bundlerUpdateScript "one_gadget";

  meta = with lib; {
    description = "The best tool for finding one gadget RCE in libc.so.6";
    homepage    = https://github.com/david942j/one_gadget;
    license     = licenses.mit;
    maintainers = with maintainers; [ artemist nicknovitski ];
    platforms   = platforms.unix;
  };
}