PDA

View Full Version : How do i use Viruz.nrx



n0tpr64
25-06-2005, 05:17 PM
I have patched viruz.nrx on my phone and added a menu but how do I send the virus?

10euros
25-06-2005, 08:10 PM
i donīt have test it but in the menu there are 2 possibilities.
1.Nokia or 2.Siemens
here you must select the typ of the phone which your friend has.
then arrive a box and here you must enter the phonenummer

how you can remove after the viruz i donīt know

sorry for my bad english

n0tpr64
27-06-2005, 03:36 AM
What menu?

When I go to the Viruz Menu I got 2 choices Viruz Nokia & Viruz Siemens but when I select 1 one of them the only menu that's there are Delivery Reports and Reply via same center. I using a 5110.

joci2000
27-06-2005, 09:03 AM
What menu?

When I go to the Viruz Menu I got 2 choices Viruz Nokia & Viruz Siemens but when I select 1 one of them the only menu that's there are Delivery Reports and Reply via same center. I using a 5110.

yeah that was the problem firstly with 3330 and 5510.

you can solve this problem if you see in the viruz_def.nrx these lines

/* zmiana kodu dla 33xx jeśli nie jest to 5510 :-) */
call locate "firmware_type"; type=result
if type~="NPM-5" then do;
say "Change code for 33xx..."
setbyte own_send_hack_nokia+x2d(05) x2d(22)
setbyte own_send_hack_siemens+x2d(05) x2d(22)
end
the 3310 uses 22 5e0 id to ask number to send sms while some other use 21 (like 3330,5510) and as i know 5110 using 20 to run this. so simply write over these lines with this and it should work with your phone

/* zmiana kodu dla 33xx jeśli nie jest to 5510 :-) */
call locate "firmware_type"; type=result
if type=="NSE-1" then do;
say "Change code for 5110..."
setbyte own_send_hack_nokia+x2d(05) x2d(20)
setbyte own_send_hack_siemens+x2d(05) x2d(20)
end
if still not working write here again, and tell which function started now with the changes

bye

Hmm I've just now seen that this problem is solved by Yak in the last script. check Yak's site and download the "Fixed not-mine scripts" and there will be viruz_def.nrx which should work. ;)

yak
27-06-2005, 02:03 PM
No, my fix does not fix this. The script was not working with new add_5e0_id.rx at all. This is fixed in this version. I have looked at this 5110 problem lately and modified the script to find the correct function ID automaticaly. It wasn't released beacause it seems that (a least on 5110) this is not the only problem. The "Enter number" box appears correctly but when you enter the number and accept it the phone always shows "still sending previous" and nothing is sent :(. Seems that the SMS structure given as a parameter to this 5E0 function looks different on these phones :(.

joci2000
27-06-2005, 03:10 PM
It wasn't released beacause...

really? i can download from your site which has the autofind function feature. in the fixed_scripts.zip :confused:

and yeah this function looks so different in 5110 like in 3310 i saw in winarm