Friday, February 8, 2019
Thursday, February 7, 2019
Ok...Intel! AIEA last report available is from 2014...surely they keep it classified the past two years...so nothing I can "miracoulse" get from the web. Anyway, this story you don't know about it
Portuguese police arrested a man suspected of involvement in smuggling highly enriched uranium (HEU), AFP reported on 11 July 2002. A 12 July 2002 report by AFP identified that suspect as 46 year-old evangelical pastor Leonel Ferreira.[1] He had been under surveillance since his name and phone number were found among the belongings of one of three men arrested in Paris in July 2001 for trying to sell HEU possibly smuggled out of the former Soviet Union.[1] Ferreira was arrested at the office of the church he founded in Oporto, the second largest city in Portugal.[1] Police had questioned him earlier in 2002, and suspect that the church that Ferreira ran was used to launder money involved in uranium smuggling.[1] The report also noted that Ferreira traveled frequently to Russia and Romania, as well as Latin America and Asia, where police believe he may have been in contact with possible buyers for uranium.[1] Ferreira will be held in custody until his trial, which has not yet been scheduled.[1] If convicted, he would face a one to eight year prison sentence.[1]
Headline: Portuguese Police Detain Suspected Uranium Smuggler
Date: 11 July 2002
Bibliography: Lexis-Nexis Academic Universe, https://web.lexis-nexis.com/universe
Orig. Src.: Agence France Presse, 11 July 2002
Case: Paris
Material: HEU
Date: 11 July 2002
Bibliography: Lexis-Nexis Academic Universe, https://web.lexis-nexis.com/universe
Orig. Src.: Agence France Presse, 11 July 2002
Case: Paris
Material: HEU
Tuesday, February 5, 2019
"hello world" Intel on Venezuela. 1. according to a russian source.."an Il-96 with the tail number RA-96019 flew on January 19 from Moscow to Senegal, then on January 23 to Paraguay, and from there on the same day toward Havana until the plane’s transponder -- used for tracking purposes -- was turned off. Aleshkovsky said that according to publicly available data, the plane landed twice more – possibly in Havana and in Caracas. After that, the transponder was turned back on and data show the plane landed back in Moscow." 2."On January 29, Venezuelan lawmaker Jose Guerra claimed via Twitter that a Boeing 777 of Russia’s Nordwind Airlines landed in Caracas on January 28 to spirit away 20 tons of gold bars, worth some $840 million, from the country’s central bank" 3. "Two nephews of Maduro's wife were found guilty in New York of conspiring to smuggle cocaine into the U.S. and sentenced in 2016 to 18 years in prison." Conclusion...Maduro is a russian partner for clandestine operations..and Russia is "paying back" the support on Ukraine.
Sunday, February 3, 2019
Intel Angola
Negócio de telecomunicações militares na sombra da Bolsa portuguesa
A venda sigilosa a Angola de um sistema de comunicações encriptado foi financiada pelo BES, no que se pode tornar no último acto público conhecido de Ricardo Salgado. E revelado pelo P2 na semana em que o banqueiro é suspeito de corromper José Sócrates, que em Luanda validou o negócio de 113 milhões
PUBLICO.PT
A venda sigilosa a Angola de um sistema de comunicações encriptado foi financiada pelo BES, no que se pode tornar no último acto público conhecido de Ricardo Salgado. E revelado pelo P2 na semana em que o banqueiro é suspeito de corromper José Sócra
Saturday, February 2, 2019
You should know by now, Iran, not only from the Hezbollah war tactics, but specially from CIA clandestine operations, that what is the most fucked to any "system" military organized, is to have a good "guerilha" back up...so here are tactical putaguese military position around lisbon, for controlling subversion. TOP tactical document.
Friday, February 1, 2019
hey...Big White Bear...can I ask you to do this...on the ulr that stands for this iptv shit here? How To mirror or migrate a website from one server to another using lftp
In website migration services, we often need to migrate websites using LFTP. Let us see what is mean by LFTP and how this can be used to migrate websites.
lftp
LFTP – (Leech File Transfer Protocol or is it Lukyanov File Transfer Protocol ? ) is a very powerful shell-like command line ftp client. Besides FTP, it also supports FTPS, HTTP, HTTPS, HFTP, FISH, and SFTP by specifying the desired protocol in a location URL. One feature which is especially handy is support for FXP i.e. data transfers between two FTP servers, bypassing the client machine. It even support torrent protocol. Cool isn’t it ?
Every operation in lftp is reliable, that is any non fatal error is ignored and the operation is repeated. So if downloading breaks, it will be restarted from the point automatically. lftp will try to retrieve the file from the very beginning until the file is transferred completely.
You can install lftp using any of the common methods like yum, apt-get or rpm. If you are a geek, likes to compile from source and prefer latest versions , then you should get it from http://lftp.yar.ru/get.html
Establishing connection
Establishing connection to the server / site is quite simple as in the case of ftp.
For anonymous connections,
#lftp ftpsite Eg : lftp 192.168.1.52 lftp 192.168.1.52:~>
here you will get the exact prompt as of lftp and you may feel that you logged into the server without providing any login info . But lftp isn’t actually connected to the server. There’s no need to connect until you actually send a request. Suppose if I try to send request to the server using the command ‘ls’ , then only the lftp try to connect to the server.
The syntax for LFTP is
lftp -u username,password -p [portno] ftpsite
If FTP runs on default port you can omit the switch “p”
Mirror a directory
lftp has built-in mirror which can download or update a whole directory tree. There is also reverse mirror (mirror -R) which uploads or updates a directory tree on server. Mirror can also synchronize directories between two remote servers, using FXP if available.
The format of the command is
mirror path/to/source_directory path/to/target_directory
Or you can use the following format without login to the server.
lftp -u username ,password -e "mirror –verbose path/to/source_directory path/to/target_directory” ftpsite
Eg: To synchronize /home/user/public_html to “backup” folder in your machine
log into the server using lftp and then execute the command
192.168.1.52:~> mirror /home/user/public_html /backup/
The mirror command has a set of switches, which can be used to control the synchronization process.
--delete
– used to delete the files in the local folder that are not present in the remote directory--only-newer
— option to download only newer files--exclude
– is to specify which files and directories to skip during synchronization.
lftp stays connected and runs the specified commands if you specify the switch “-e” .
So a command with all these switches will look like the following one
lftp -u username,password -e “mirror –delete –only-newer –verbose path/to/source_directory path/to/target_directory” ftpsite
Reverse mirror ( local directory to FTP server)
If you want to synchronize local directory to FTP server, ie upload the directory tree in your machine to the server, we can use the –reverse switch. Here the command will look like
lftp -u username,password -e “mirror –reverse –delete –only-newer –verbose path/to/source_directory path/to/target_directory” ftpsite
As the name suggests, the switch reverses the source and target directories, so lftp uploads files from the local directory to the remote FTP server.
You can use our website migration services for getting assistance on website migration.
Thursday, January 31, 2019
Subscribe to:
Posts (Atom)
Portugal Ukraine Russia (mercenaires killed)
https://sicnoticias.pt/especiais/guerra-russia-ucrania/2025-04-03-video-russia-diz-ter-abatido-mercenarios-portugueses-na-ucrania-755f2fec
