Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
Jejeje... eso es una partesita de un pishing sencillo ahora toy pensando en algo mas grandesito con otros programas q son more usefull... y pues no solo el ultradit...cualquier editor hexadecimal...el olly... es excelente en la buena
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
konsieso q tendre mi cluster en la U!!!! ......... Konfieso que voy a liderar el semillero de la U... Konfieso que estoy subiendo el promedio y las materias q supuestamente estaba mal ......... Konsieso q abra un nuevo live cd ...... y q abra un nuevo boom sin comentarios xD.........jejejeje
Forum: General
· Post Preview: #33872
· Replies: 5300
· Views: 191,094
Resulta y sucede que estoy haciendo un proyecto, en el cual esta realizado en matlab, ya tengo granparte del algoritmo avanzado, tenia antes un problema de programacion que hacia que el programa se demoraba maso menos 40 minutos en un procesador petium4 con 3Ghz, 1GB ram, pero ahora me demora minutos si no toy mal como unos 10minutos... pues si se puede agilizar mas mucho mejor , el problemita que tengo ahora es que necesito hacer la interpolacion en dos dimensiones ya que esta con interp, y deberia estar con interp2... lo machetee metiendole el 2 pero como q no es asi xD....agradesco el que me pueda colaborar....
Codigo:
IEMD_public.m ->Realiza el Proceso. "EL QUE HAY QUE MODIFICAR"
CODE
function [ix,resx,medel]=IEMD_public(image,epsilon,numberimfs,conn) % Decompose an image into its intrinsic modes IMFs and corresponding % residues. % % % INPUT: % image- a matlab 2D vector; % epsilon- value of stop criterion, between 0 and 1 but you can try other % and see what happens % numberimfs- maximum number of IMF % conn- Type of neighbourhood in extrema point selection % '4m' two-dimensional four-connected neighborhood, use 'imregionalmax' in Images toolbox % '8m' two-dimensional eight-connected neighborhood, use 'imregionalmax' in Images toolbox % '4' two-dimensional four-connected neighborhood, simple implementation % '8' two-dimensional eight-connected neighborhood, simple implementation % Note all that these give different results % % OUTPUT: % ix - 3D vector with all IMFs % resx - 3D vector with all residues % % % % % % % % % NOTE: % The interpolation use 'tpaps' in the Matlab 6.5 Splines toolbox. This is % extremely slow and memory consuming; unless you have a very good computer % do not use this code on larger images than 128x128. Please make a % better implementation and tell me about it. %%
if size(Iy)<200 for k=1:2:size(y,1) y(1,k)=x(1,k); y(size(x,1),k)=x(size(x,1),k); y(k,size(x,2))=x(k,size(x,2)); y(k,1)=x(k,1); end end [Iv,Jv,Vv] = find(v); if size(Iv)<200 for k=1:2:size(v,1) v(1,k)=x(1,k); v(size(x,1),k)=x(size(x,1),k); v(k,size(x,2))=x(k,size(x,2)); v(k,1)=x(k,1); end end
if max(size(v12,1),size(v12,2))<3 medel=zeros(size(x)); f=1; c=x-medel; return end if max(size(v22,1),size(v22,2))<3 medel=zeros(size(x)); c=x-medel; f=1; return end
% if x(i,j)>x(i+1,j) % if x(i,j)>x(i-1,j) % if x(i,j)>x(i,j-1) % if x(i,j)>x(i,j+1) % y(i,j)=x(i,j); % end % end % end % end
if x(i,j)>x(i+1,j) & x(i,j)>x(i-1,j) & x(i,j)>x(i,j-1)& x(i,j)>x(i,j+1) y(i,j)=x(i,j); end
% if x(i,j)<x(i+1,j) % if x(i,j)<x(i-1,j) % if x(i,j)<x(i,j-1) % if x(i,j)<x(i,j+1) % v(i,j)=x(i,j); % end % end % end % end
if x(i,j)<x(i+1,j) & x(i,j)<x(i-1,j) & x(i,j)<x(i,j-1) & x(i,j)<x(i,j+1) v(i,j)=x(i,j); end
end end
case '8'
for j=2:size(x,2)-1 for i=2:size(x,1)-1
% if x(i,j)>x(i+1,j) % if x(i,j)>x(i+1,j+1) % if x(i,j)>x(i+1,j-1) % if x(i,j)>x(i,j+1) % if x(i,j)>x(i,j-1) % if x(i,j)>x(i-1,j) % if x(i,j)>x(i-1,j+1) % if x(i,j)>x(i-1,j-1) % y(i,j)=x(i,j); % end % end % end % end % end % end % end % end %
if x(i,j)>x(i+1,j) & x(i,j)>x(i+1,j+1) & x(i,j)>x(i+1,j-1) & x(i,j)>x(i,j+1) & x(i,j)>x(i,j-1) & x(i,j)>x(i-1,j) & x(i,j)>x(i-1,j+1) & x(i,j)>x(i-1,j-1) y(i,j)=x(i,j); end
% if x(i,j)<x(i+1,j) % if x(i,j)<x(i+1,j+1) % if x(i,j)<x(i+1,j-1) % if x(i,j)<x(i,j+1) % if x(i,j)<x(i,j-1) % if x(i,j)<x(i-1,j) % if x(i,j)<x(i-1,j+1) % if x(i,j)<x(i-1,j-1) % v(i,j)=x(i,j); % end % end % end % end % end % end % end % end
if x(i,j)<x(i+1,j) & x(i,j)<x(i+1,j+1)& x(i,j)<x(i+1,j-1) & x(i,j)<x(i,j+1) & x(i,j)<x(i,j-1) & x(i,j)<x(i-1,j) & x(i,j)<x(i-1,j+1) & x(i,j)<x(i-1,j-1) v(i,j)=x(i,j); end end end case '4m'
P = imregionalmax(x,4); y = double(P) .* double(x); P = imregionalmin(x,4); v = double(P) .* double(x);
case '8m'
P = imregionalmax(x,8); y = double(P) .* double(x); P = imregionalmin(x,8); v = double(P) .* double(x); end
Inicio en donde se dan los valores estipulados para runear el programa: inicioEMD.m->Intruduccion de datos. "ESTA PARTE NO SE MUEVE NADA YA QUE SOLO ES EL INICIO DONDE SE INTRODUCEN LOS DATOS"
CODE
clc clear all
disp('PROCESAMIENTO DIGITAL DE LA SEÑAL PROYECTO BEMD') disp('IMAGE COMPRESSION, PRESENTED BY LUTIO')
disp('WELCOME TO BEMD FOR IMAGE COMPRESSION')
disp('USE THE FOLLOWING INPUT PARAMETERS:')
X= input(' introduce and specify the name and format of the image you want to compress = ')
epsilon = input('epsilon : value of stop criterion, it is more usefull if you use values between 0 and 1 = ') numberimfs = input('numberimfs : maximum number of IMF = ') conn = input('conn : Type of neighbourhood in extrema point selection use any of the following values 4m,8m,4 and 8 = ')
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
muy bueno brother congratulations!!!..... espero este año un amigo de un amigo que quiere conquistar el mundo me ilustre un poco de php porque en realidad me trama el cuento en la buena
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
Phising En Winrar Bueno navegando un rato encontre algo que me llamo la atencion acerca de las formas actuales de pishing para obtener informacion extra segun le convenga a uno. como el titulo del post dice "Phising En Winrar", les voy a demostrar paso a paso la realizacion de este.
Bueno aca vemos la version del winrar que poseo, lo que tengo entendido es que las versiones del winrar menores que la 3.5 son vulnerables alparecer tengo una de 4.5 y todavia lo es, sin embargo se que esta version fue modificada, entnoks no estoy seguro de su version.
Bueno la version de mi winrar:
Comprobando que por ahora no hay un redireciconamiento raro a otra web que no sea la original del winrar:
Aqui encuentro la ubicacion del la home page del winrar(con un hex. editor):
Aqui la modifico a mi gusto xD y la guardo obviamente:
Aqui abro de nuevo el winrar y me redireccion a la url que le puse xD:
Nota: *Aclaro que en la direccion podemos hacer un formulario o lo que queramos para obtener informacion extra, ahi uds. ingeniensenlas. *la web de lutiox esta en reparacion xD...jejejeje xD....
PD: Interesante Hacerlo con programas que utilizen frecuentemente en internet, suena heh?¿...bueno pinitos para algo grande xD.....
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
Konfieso q aunque no me gusta leer estoy empezando a leer y me esta gustando un poco la lectura... konfieso q si van a conquistar el mundo no se olviden que yo tambien tengo espiritu de colonizador como simon bolivar!!!.... konfieso q desde aquella vez que vi a esa niña algo me palpito......... konfieso q ahora soy el vagabundo de la red.........xD.....
Forum: General
· Post Preview: #33739
· Replies: 5300
· Views: 191,094
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
Diskeeper 2007 Pro Premier!!!!
Fast, thorough, automatic defrag. Includes the revolutionary new InvisiTaskingâ„¢ technology to give you enhanced file system performance with no drain on system resources!
What is InvisiTaskingâ„¢?
InvisiTasking was coined from “invisible� and “multitasking�, and this amazing technological breakthrough promises to change the way the world operates and maintains their computer systems. . InvisiTasking allows computers to do something that has never been done before – to run at maximum peak performance, continuously, without interfering with system performance or resources – even when demand is at its highest!
InvisiTasking allows Diskeeper® 2007 to eliminate fragmentation on the fly, in real time, so that fragmentation never has a chance to interfere with the system. Best of all, InvisiTasking does this automatically, without the need for any input from the user – regardless of the size of the network. Whether its just one PC or thousands just install Diskeeper 2007 and the software will take care of the rest!
Advanced Breakthrough Technology
It’s important to note that InvisiTasking is far more advanced than any previous low priority I/O approaches that do “I/O throttling� in an effort to reduce resource conflict. InvisiTasking, through the use of its advanced technology, goes beyond just I/O in order to address system resource usage using a pro-active approach. InvisiTasking checks to make sure the operation that occurs takes place invisibly, with true transparency while running in the background.
With InvisiTasking, Diskeeper 2007 will set an entirely new standard for computer performance and reliability.
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
eeeeeeee..........i found this........ The Medium Vulnerabilities: ------------------------------------------------------------------------------------------------ Apache Mod_SSL Log Function Format String
Vulnerability description This alert has been generated using only banner information. It may be a false positive. A format string vulnerability has been found in mod_ssl versions older than 2.8.19. Successful exploitation of this issue will most likely allow an attacker to execute arbitrary code on the affected computer.
Affected mod_ssl versions (up to 2.8.18). This vulnerability affects mod_ssl. The impact of this vulnerability Denial of service and/or possible arbitrary code execution. Attack details Current version is mod_ssl/2.0.54 OpenSSL/0.9.7e Unknown
How to fix this vulnerability Upgrade mod_ssl to the latest version. -----------------------------------------------------------------------------------------------
Vulnerability description This alert has been generated using only banner information. It may be a false positive. A stack-based buffer overflow has been reported in the Apache mod_ssl module. This issue would most likely result in a denial of service if triggered, but could theoretically allow for execution of arbitrary code. The issue is not believed to be exploitable to execute arbitrary code on x86 architectures, though this may not be the case with other architectures.
Affected mod_ssl versions (up to 2.8.17). This vulnerability affects mod_ssl. The impact of this vulnerability Denial of service and/or possible arbitrary code execution. Attack details Current version is mod_ssl/2.0.54 OpenSSL/0.9.7e Unknown
How to fix this vulnerability Upgrade mod_ssl to the latest version. ----------------------------------------------------------------------------------------------
Apache Mod_SSL Log Function Format String Vulnerability Vulnerability description This alert has been generated using only banner information. It may be a false positive. A format string vulnerability has been found in mod_ssl versions older than 2.8.19. Successful exploitation of this issue will most likely allow an attacker to execute arbitrary code on the affected computer.
Affected mod_ssl versions (up to 2.8.18). This vulnerability affects mod_ssl. The impact of this vulnerability Denial of service and/or possible arbitrary code execution. Attack details Current version is mod_ssl/2.0.54 OpenSSL/0.9.7e Unknown
How to fix this vulnerability Upgrade mod_ssl to the latest version. ----------------------------------------------------------------------------------------------- The Low Vulnerabilities:
Possible sensitive files. Vulnerability description A possible sensitive file has been found. This check looks for known sensitive files like: password files, configuration files, log files, include files, statistics data, database dumps. Each of those files may help an attacker to learn more about his target. This vulnerability affects /.bashrc. The impact of this vulnerability This file may expose sensitive information that may help an malicious user to prepare more advanced attacks. ---------------------------------------------------------------
TRACE Method Enabled
Vulnerability description HTTP TRACE method is enabled on this web server. In the presence of other cross-domain vulnerabilities in web browsers, sensitive header information could be read from any domains that support the HTTP TRACE method. This vulnerability affects Web Server. The impact of this vulnerability Attackers may abuse HTTP TRACE functionality to gain access to information in HTTP headers such as cookies and authentication data.
Group: Hackerss Member
Posts: 13
Joined: 6-January 07
From: COLOMBIA!!!
Member No.: 1,642
Hola A todos Mi nombre es Lutio ........Soy 101% Colombiano, Amigo de C7b3r,Dino, Rpm, y no veo por ahi quien otro si me acuerdo edito el post xD...... eee.... ahora ando en la paguina de CUT http://Www.ColombiaUnderground.Org ......... y pues estoy estudiando ing. de telecomunicaciones y espero ayudarles en algo y pues aprender un poco en cada foro que estoy visitando...saludes y "sele tiene" xD en la buena
Forum: General
· Post Preview: #25491
· Replies: 653
· Views: 68,380
New Replies No New Replies Hot Topic (New) Hot Topic (No New)