php-webshells icon indicating copy to clipboard operation
php-webshells copied to clipboard

Added Athena.php

Open 4e0x opened this issue 4 years ago • 0 comments

A minimal with a tiny file manager web shell.

4e0x avatar Mar 03 '21 08:03 4e0x

Something strange happens to this.data. When I run grunt webfont webfont receives normal options object:

{ src: 'src/icons/*.svg',
  dest: 'out/css/fonts',
  destCss: 'out/css',
  options: { htmlDemo: false } }

But when I run grunt newer:webfont it receives very strange object:

{ destCss: 'out/css',
  options: { htmlDemo: false },
  files:
   [ { src: [Object],
       dest: 'out/css/fonts',
       destCss: 'out/css',
       orig: [Object] } ] }

sapegin avatar May 19 '14 12:05 sapegin

My "proxy task" workaround until this is resolved.

Add some grunt-newer compatible proxy task configuration options inside grunt.initConfig

// Add src and dest attributes to your "icons" proxy task for grunt-newer.
icons: {
    build: {
        // used src from the svgmin config and dest from webfont config.
        src: 'assets/icons/*/min/*',
        dest: 'assets/fonts/'
    }
}

Register the proxy task.

// add wrapper task to fix grunt-newer/webfont compatibility issue
grunt.registerTask('icons', 'build glyphicons.', function() {
    grunt.task.run('svgmin','webfont');
});

//use "'newer:icons'" to build the glyphicons using grunt-newer

mpalpha avatar Jan 12 '15 17:01 mpalpha

Hi

Any chances to see native fix of that issue?

ArmorDarks avatar Feb 06 '15 11:02 ArmorDarks

/ping

jsmirnov avatar Jun 10 '15 14:06 jsmirnov