ไม่พบผลลัพธ์สำหรับ "#symfonycache"

If you happen to find Symfony Web Framework that has Symfony profiler debug mode enabled, fuzz the following endpoints: - /app_dev.php - /app_dev.php/_profiler/phpinfo - /app_dev.php/_profiler - Look for "profiler token" in phpinfo() #BugBounty #bugbountytips

nav1n0x's tweet image. If you happen to find Symfony Web Framework that has Symfony profiler debug mode enabled, fuzz the following endpoints:

- /app_dev.php
- /app_dev.php/_profiler/phpinfo
- /app_dev.php/_profiler
- Look for "profiler token" in phpinfo()

#BugBounty #bugbountytips

If you find Web frameworks like Symfony, add '/app_dev.php/_profiler/open?file=app/config/parameters.yml' to the wordlist, and you may get juicy data. Enjoy!" #bugbountytips #bugbountytip #cybersecurity #ethicalhacking

NoRed0x's tweet image. If you find Web frameworks like Symfony, add '/app_dev.php/_profiler/open?file=app/config/parameters.yml' to the wordlist, and you may get juicy data. Enjoy!"  
#bugbountytips #bugbountytip #cybersecurity #ethicalhacking

Good morning peeps✨ Quick frontend performance tip: lazy load images with loading="lazy" <img src="image.jpg" loading="lazy" /> Browser handles it natively, no libraries needed. Simple optimization that improves page load. Small things compound 🎯

hrshita_kshyp's tweet image. Good morning peeps✨

Quick frontend performance tip:

lazy load images with loading=&quot;lazy&quot;

&amp;lt;img src=&quot;image.jpg&quot; loading=&quot;lazy&quot; /&amp;gt;

Browser handles it natively, no libraries needed. Simple optimization that improves page load.

Small things compound 🎯

If you want to get rid of those hundreds of CVEs in your container images, the first step is to understand their origin. Typical sources: - A "fat" base image - Forgotten build tools - Outdated dependencies Easy solution? A Multi-stage build with a fresh(er) and slim(er) base.

iximiuz's tweet image. If you want to get rid of those hundreds of CVEs in your container images, the first step is to understand their origin.

Typical sources:
- A &quot;fat&quot; base image
- Forgotten build tools
- Outdated dependencies

Easy solution? A Multi-stage build with a fresh(er) and slim(er) base.

Observed a weird WAF bypass case: > WAF blocked <img> tag > 'src' attr got blocked too > Found WAF didn't block <image> Finally crafted: <image src\r\n=valid.jpg onloadend='new class extends (co\u006efir\u006d)/**/`` &lcub;&rcub;'> > BOOM #infosec #bugbounty #bugbountytips

0xInfection's tweet image. Observed a weird WAF bypass case:

&amp;gt; WAF blocked &amp;lt;img&amp;gt; tag
&amp;gt; &apos;src&apos; attr got blocked too
&amp;gt; Found WAF didn&apos;t block &amp;lt;image&amp;gt;

Finally crafted:

&amp;lt;image src\r\n=valid.jpg onloadend=&apos;new class extends (co\u006efir\u006d)/**/`` &amp;amp;lcub;&amp;amp;rcub;&apos;&amp;gt;

&amp;gt; BOOM

#infosec #bugbounty #bugbountytips

Tired of seeing your stack traces in laravel.log? Set up a little filter alias for yourself 🦄 Enjoy: gist.github.com/jakebathman/a1…

jakebathman's tweet image. Tired of seeing your stack traces in laravel.log? Set up a little filter alias for yourself 🦄 

Enjoy: gist.github.com/jakebathman/a1…
jakebathman's tweet image. Tired of seeing your stack traces in laravel.log? Set up a little filter alias for yourself 🦄 

Enjoy: gist.github.com/jakebathman/a1…

symfony/polyfill is downloaded so much that its download count doesn't fit on a single line anymore 😂

brendt_gd's tweet image. symfony/polyfill is downloaded so much that its download count doesn&apos;t fit on a single line anymore 😂

1 billion #symfony downloads in less than 40 minutes now.

fabpot's tweet image. 1 billion #symfony downloads in less than 40 minutes now.

Want to load your (LCP) hero image sooner? Try <img fetchpriority=high> to boost its priority. Now used in production by Google Store, eBay, Etsy, Yahoo. Learn more: web.dev/priority-hints

addyosmani's tweet image. Want to load your (LCP) hero image sooner? 

Try &amp;lt;img fetchpriority=high&amp;gt; to boost its priority. Now used in production by Google Store, eBay, Etsy, Yahoo. Learn more: web.dev/priority-hints

DevTools Tip: You can negate any advanced network filter. "-is:from-cache" will find all resources which were *not* loaded from a cache

umaar's tweet image. DevTools Tip: You can negate any advanced network filter. &quot;-is:from-cache&quot; will find all resources which were *not* loaded from a cache

Sometimes you just need to quickly clear the cache when working in your development environment. Here's a quick snippet to make that easier.

adrianthedev's tweet image. Sometimes you just need to quickly clear the cache when working in your development environment. Here&apos;s a quick snippet to make that easier.

Shipping soon: the "stale-while-revalidate" HTTP Cache-Control directive: bit.ly/swr-blink sets a grace period in which browsers can use an out of date (stale) asset while checking on a new version. Hides latency (network, server) from clients. bit.ly/cache-swr

addyosmani's tweet image. Shipping soon: the &quot;stale-while-revalidate&quot; HTTP Cache-Control directive: bit.ly/swr-blink sets a grace period in which browsers can use an out of date (stale) asset while checking on a new version. Hides latency (network, server) from clients. bit.ly/cache-swr

20/ terminal by TitasGailius If you’re working with terminal commands, you can use Symfony Process, which is a pretty good component. Terminal takes it to another level:

mmartin_joo's tweet image. 20/ terminal by TitasGailius 

If you’re working with terminal commands, you can use Symfony Process, which is a pretty good component. 

Terminal takes it to another level:

"Replace <img /> elements with <img-2> to automatically pre-cache images and improve page performance." github.com/RevillWeb/img-2

css's tweet image. &quot;Replace &amp;lt;img /&amp;gt; elements with &amp;lt;img-2&amp;gt; to automatically pre-cache images and improve page performance.&quot;

github.com/RevillWeb/img-2

💡 CSS Tip With a transparent image, use the filter property instead of box-shadow:

YannBrds's tweet image. 💡 CSS Tip

With a transparent image, use the filter property instead of box-shadow:

Tip on @filamentphp. In Table Filters, you probably know the TernaryFilter for boolean values. But did you know about a specific `TrashedFilter`? It's a special kind of TernaryFilter, for soft-deletes. Docs: filamentphp.com/docs/4.x/table… #practicalFilamentDocs

PovilasKorop's tweet image. Tip on @filamentphp.

In Table Filters, you probably know the TernaryFilter for boolean values.

But did you know about a specific `TrashedFilter`?
It&apos;s a special kind of TernaryFilter, for soft-deletes.

Docs: filamentphp.com/docs/4.x/table… 

#practicalFilamentDocs
PovilasKorop's tweet image. Tip on @filamentphp.

In Table Filters, you probably know the TernaryFilter for boolean values.

But did you know about a specific `TrashedFilter`?
It&apos;s a special kind of TernaryFilter, for soft-deletes.

Docs: filamentphp.com/docs/4.x/table… 

#practicalFilamentDocs
PovilasKorop's tweet image. Tip on @filamentphp.

In Table Filters, you probably know the TernaryFilter for boolean values.

But did you know about a specific `TrashedFilter`?
It&apos;s a special kind of TernaryFilter, for soft-deletes.

Docs: filamentphp.com/docs/4.x/table… 

#practicalFilamentDocs

How to build the image filters you want via SVG & <feColorMatrix> 🎨 alistapart.com/article/finess… #artTheWeb

Una's tweet image. How to build the image filters you want via SVG &amp;amp; &amp;lt;feColorMatrix&amp;gt; 🎨

alistapart.com/article/finess…

#artTheWeb

Loading...

Something went wrong.


Something went wrong.


United States Trends