Login Register






how to make a python program checks for updates >> On Windows filter_list
Author
Message
how to make a python program checks for updates >> On Windows #1
Hello python developers,

It's a pleasure to be with you here.

Anyway, I created a windows software using python language and I compiled it using Py2Exe and it works great.

now, I am wondering how to make it checks for new updates.

Please help me :Not-Amused:

Reply

RE: how to make a python program checks for updates >> On Windows #2
http://stackoverflow.com/questions/12758...pplication

This will solve your problem, Gosh I must create a thread on "How to Search Google" :S
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply

RE: how to make a python program checks for updates >> On Windows #3
(04-04-2014, 01:55 PM)Ex094 Wrote: http://stackoverflow.com/questions/12758...pplication

This will solve your problem, Gosh I must create a thread on "How to Search Google" :S

Actually, I don't have access Google. Because I am using a vulnerability in my ISP .. So, I enjoy a Free Internet.
The prob is that I have access to HTTP website only. not HTTPs.. and Google uses HTTPs protocol. fortunately, Bing uses Http.

Thus, I suggest that you make a thread on 'How to Search in Bing' lol

Reply

RE: how to make a python program checks for updates >> On Windows #4
(04-04-2014, 02:13 PM)bobdos007 Wrote:
(04-04-2014, 01:55 PM)Ex094 Wrote: http://stackoverflow.com/questions/12758...pplication

This will solve your problem, Gosh I must create a thread on "How to Search Google" :S

Actually, I don't have access Google. Because I am using a vulnerability in my ISP .. So, I enjoy a Free Internet.
The prob is that I have access to HTTP website only. not HTTPs.. and Google uses HTTPs protocol. fortunately, Bing uses Http.

Thus, I suggest that you make a thread on 'How to Search in Bing' lol

If you can't Google Then Yahoo :- https://in.search.yahoo.com/search;_ylt=...=yfp-t-704
[Image: OilyCostlyEwe.gif]

Reply

RE: how to make a python program checks for updates >> On Windows #5
See this as well :-

http://cs.simpson.edu/?q=make_an_install...on_program
[Image: OilyCostlyEwe.gif]

Reply

RE: how to make a python program checks for updates >> On Windows #6
(04-04-2014, 02:29 PM)Psycho_Coder Wrote: See this as well :-

http://cs.simpson.edu/?q=make_an_install...on_program


Thank you so much... This is very useful for me :Laughing:

Reply

RE: how to make a python program checks for updates >> On Windows #7
(04-04-2014, 02:13 PM)bobdos007 Wrote: I am using a vulnerability in my ISP .. So, I enjoy a Free Internet.

Care to share? I know that exploiting ISP vulnerabilities is complicated... but not as complicated as finding them!

About your application... you can use an FTP server! You check the version if it is higher you download and replace, delete or modify the old scripts (files or module), won't that work for you? if no, could you please provide more info why not?

Note: to do so you have to build an updater, a little application that does this check... just like in MMORPG Games!

Thanks!
[Image: wvBFmA5.png]

Reply

RE: how to make a python program checks for updates >> On Windows #8
(04-04-2014, 02:56 PM)Ligeti Wrote:
(04-04-2014, 02:13 PM)bobdos007 Wrote: I am using a vulnerability in my ISP .. So, I enjoy a Free Internet.

Care to share? I know that exploiting ISP vulnerabilities is complicated... but not as complicated as finding them!

About your application... you can use an FTP server! You check the version if it is higher you download and replace, delete or modify the old scripts (files or module), won't that work for you? if no, could you please provide more info why not?

Note: to do so you have to build an updater, a little application that does this check... just like in MMORPG Games!

Thanks!

Don't you think the FTP Credentials would have to be hard coded to the program, Wouldn't it make this a security hazard?
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply

RE: how to make a python program checks for updates >> On Windows #9
(04-04-2014, 03:14 PM)Ex094 Wrote: Don't you think the FTP Credentials would have to be hard coded to the program, Wouldn't it make this a security hazard?

Believe it or not... no it won't, you restrict FTP (public) user to the home directory only... just a simple example:
http://portal.hostingcontroller.com/KB/a...ctory.aspx

I don't think that I need to mention the user permissions!

You may also read this (very useful):
http://www.cyberciti.biz/faq/restrict-li...ries-only/

We did this in my previous work... work OK!

Peace!
[Image: wvBFmA5.png]

Reply

RE: how to make a python program checks for updates >> On Windows #10
@Ligeti That cleared the misconception Smile Hence FTP can prove useful for OP's problem
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply